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

Unified Diff: chrome/browser/ui/views/browser_dialogs_views_mac.cc

Issue 1314953009: Refactor WebsiteSettings to operate on a SecurityInfo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/browser_dialogs_views_mac.cc
diff --git a/chrome/browser/ui/views/browser_dialogs_views_mac.cc b/chrome/browser/ui/views/browser_dialogs_views_mac.cc
index 928ef1a1fa62cb2db151f091023fcbf0a7480bc4..1a8e754e87319a3f34abddc13c82c51b66398e42 100644
--- a/chrome/browser/ui/views/browser_dialogs_views_mac.cc
+++ b/chrome/browser/ui/views/browser_dialogs_views_mac.cc
@@ -17,14 +17,15 @@
namespace chrome {
-void ShowWebsiteSettingsBubbleViewsAtPoint(const gfx::Point& anchor_point,
- Profile* profile,
- content::WebContents* web_contents,
- const GURL& url,
- const content::SSLStatus& ssl) {
- WebsiteSettingsPopupView::ShowPopup(nullptr,
- gfx::Rect(anchor_point, gfx::Size()),
- profile, web_contents, url, ssl);
+void ShowWebsiteSettingsBubbleViewsAtPoint(
+ const gfx::Point& anchor_point,
+ Profile* profile,
+ content::WebContents* web_contents,
+ const GURL& url,
+ const SecurityStateModel::SecurityInfo& security_info) {
+ WebsiteSettingsPopupView::ShowPopup(
+ nullptr, gfx::Rect(anchor_point, gfx::Size()), profile, web_contents, url,
+ security_info);
}
void ShowBookmarkBubbleViewsAtPoint(const gfx::Point& anchor_point,

Powered by Google App Engine
This is Rietveld 408576698