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

Unified Diff: chrome/browser/ui/cocoa/browser_window_cocoa.mm

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/cocoa/browser_window_cocoa.mm
diff --git a/chrome/browser/ui/cocoa/browser_window_cocoa.mm b/chrome/browser/ui/cocoa/browser_window_cocoa.mm
index 515594d62ca41f120e0e80426625ac8ceb49b8b2..ba663b53963e34dbd2bc7db416479af23e16fd70 100644
--- a/chrome/browser/ui/cocoa/browser_window_cocoa.mm
+++ b/chrome/browser/ui/cocoa/browser_window_cocoa.mm
@@ -73,7 +73,6 @@
#endif
using content::NativeWebKeyboardEvent;
-using content::SSLStatus;
using content::WebContents;
namespace {
@@ -711,8 +710,9 @@ void BrowserWindowCocoa::ShowWebsiteSettings(
Profile* profile,
content::WebContents* web_contents,
const GURL& url,
- const content::SSLStatus& ssl) {
- WebsiteSettingsUIBridge::Show(window(), profile, web_contents, url, ssl);
+ const SecurityStateModel::SecurityInfo& security_info) {
+ WebsiteSettingsUIBridge::Show(window(), profile, web_contents, url,
+ security_info);
}
void BrowserWindowCocoa::ShowAppMenu() {

Powered by Google App Engine
This is Rietveld 408576698