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

Unified Diff: chrome/browser/ui/browser_commands.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/browser_commands.cc
diff --git a/chrome/browser/ui/browser_commands.cc b/chrome/browser/ui/browser_commands.cc
index 4b43f9887bf4facded5635ba2f30bc135d5d9379..b4e3fd621fd6c859e9bbbd14403fda5e8a8ad8cb 100644
--- a/chrome/browser/ui/browser_commands.cc
+++ b/chrome/browser/ui/browser_commands.cc
@@ -117,7 +117,6 @@ using content::NavigationController;
using content::NavigationEntry;
using content::OpenURLParams;
using content::Referrer;
-using content::SSLStatus;
using content::WebContents;
namespace chrome {
@@ -860,13 +859,14 @@ void ShowFindBar(Browser* browser) {
browser->GetFindBarController()->Show();
}
-void ShowWebsiteSettings(Browser* browser,
- content::WebContents* web_contents,
- const GURL& url,
- const SSLStatus& ssl) {
+void ShowWebsiteSettings(
+ Browser* browser,
+ content::WebContents* web_contents,
+ const GURL& url,
+ const SecurityStateModel::SecurityInfo& security_info) {
browser->window()->ShowWebsiteSettings(
Profile::FromBrowserContext(web_contents->GetBrowserContext()),
- web_contents, url, ssl);
+ web_contents, url, security_info);
}
void Print(Browser* browser) {

Powered by Google App Engine
This is Rietveld 408576698