Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(386)

Side by Side Diff: chrome/browser/ui/views/download/download_feedback_dialog_view.cc

Issue 2248873002: Convert WindowOpenDisposition to an enum class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/views/download/download_feedback_dialog_view.h" 5 #include "chrome/browser/ui/views/download/download_feedback_dialog_view.h"
6 6
7 #include "base/metrics/histogram.h" 7 #include "base/metrics/histogram.h"
8 #include "base/supports_user_data.h" 8 #include "base/supports_user_data.h"
9 #include "chrome/browser/platform_util.h" 9 #include "chrome/browser/platform_util.h"
10 #include "chrome/browser/profiles/profile.h" 10 #include "chrome/browser/profiles/profile.h"
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 views::View* DownloadFeedbackDialogView::CreateExtraView() { 149 views::View* DownloadFeedbackDialogView::CreateExtraView() {
150 return link_view_; 150 return link_view_;
151 } 151 }
152 152
153 void DownloadFeedbackDialogView::LinkClicked( 153 void DownloadFeedbackDialogView::LinkClicked(
154 views::Link* source, int event_flags) { 154 views::Link* source, int event_flags) {
155 WindowOpenDisposition disposition = 155 WindowOpenDisposition disposition =
156 ui::DispositionFromEventFlags(event_flags); 156 ui::DispositionFromEventFlags(event_flags);
157 content::OpenURLParams params( 157 content::OpenURLParams params(
158 GURL(l10n_util::GetStringUTF8(IDS_SAFE_BROWSING_PRIVACY_POLICY_URL)), 158 GURL(l10n_util::GetStringUTF8(IDS_SAFE_BROWSING_PRIVACY_POLICY_URL)),
159 content::Referrer(), 159 content::Referrer(), disposition == WindowOpenDisposition::CURRENT_TAB
160 disposition == CURRENT_TAB ? NEW_FOREGROUND_TAB : disposition, 160 ? WindowOpenDisposition::NEW_FOREGROUND_TAB
161 : disposition,
161 ui::PAGE_TRANSITION_LINK, false); 162 ui::PAGE_TRANSITION_LINK, false);
162 navigator_->OpenURL(params); 163 navigator_->OpenURL(params);
163 } 164 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698