| Index: chrome/browser/ui/views/accessibility/invert_bubble_view.cc
|
| diff --git a/chrome/browser/ui/views/accessibility/invert_bubble_view.cc b/chrome/browser/ui/views/accessibility/invert_bubble_view.cc
|
| index c92e3644fa8688a19dd7da704c1c58aff1687a94..49f4932f626275c05a7e9fa1e94c3064b6b5b70a 100644
|
| --- a/chrome/browser/ui/views/accessibility/invert_bubble_view.cc
|
| +++ b/chrome/browser/ui/views/accessibility/invert_bubble_view.cc
|
| @@ -154,7 +154,9 @@ void InvertBubbleView::OpenLink(const std::string& url, int event_flags) {
|
| ui::DispositionFromEventFlags(event_flags);
|
| content::OpenURLParams params(
|
| GURL(url), content::Referrer(),
|
| - disposition == CURRENT_TAB ? NEW_FOREGROUND_TAB : disposition,
|
| + disposition == WindowOpenDisposition::CURRENT_TAB
|
| + ? WindowOpenDisposition::NEW_FOREGROUND_TAB
|
| + : disposition,
|
| ui::PAGE_TRANSITION_LINK, false);
|
| browser_->OpenURL(params);
|
| }
|
|
|