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

Unified Diff: chrome/browser/ui/views/toolbar/toolbar_view.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/toolbar/toolbar_view.cc
diff --git a/chrome/browser/ui/views/toolbar/toolbar_view.cc b/chrome/browser/ui/views/toolbar/toolbar_view.cc
index 6a950f7ab6ae75395ed3f25dec710ff4b65174dd..cfc951bfc2478bad63a5e72404aa2066745aa148 100644
--- a/chrome/browser/ui/views/toolbar/toolbar_view.cc
+++ b/chrome/browser/ui/views/toolbar/toolbar_view.cc
@@ -405,10 +405,11 @@ ToolbarView::GetContentSettingBubbleModelDelegate() {
return browser_->content_setting_bubble_model_delegate();
}
-void ToolbarView::ShowWebsiteSettings(content::WebContents* web_contents,
- const GURL& url,
- const content::SSLStatus& ssl) {
- chrome::ShowWebsiteSettings(browser_, web_contents, url, ssl);
+void ToolbarView::ShowWebsiteSettings(
+ content::WebContents* web_contents,
+ const GURL& url,
+ const SecurityStateModel::SecurityInfo& security_info) {
+ chrome::ShowWebsiteSettings(browser_, web_contents, url, security_info);
}
views::Widget* ToolbarView::CreateViewsBubble(

Powered by Google App Engine
This is Rietveld 408576698