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

Unified Diff: chrome/browser/ui/browser_window.h

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_window.h
diff --git a/chrome/browser/ui/browser_window.h b/chrome/browser/ui/browser_window.h
index afbddd2b2dca65eb7c9ba0a31fe371fd2cfaa3c2..e5755f4c3bb95449c4695151707d5d552b7f3e49 100644
--- a/chrome/browser/ui/browser_window.h
+++ b/chrome/browser/ui/browser_window.h
@@ -8,6 +8,7 @@
#include "base/callback_forward.h"
#include "chrome/browser/lifetime/browser_close_manager.h"
#include "chrome/browser/signin/chrome_signin_helper.h"
+#include "chrome/browser/ssl/security_state_model.h"
#include "chrome/browser/translate/chrome_translate_client.h"
#include "chrome/browser/ui/bookmarks/bookmark_bar.h"
#include "chrome/browser/ui/browser.h"
@@ -39,7 +40,6 @@ struct WebApplicationInfo;
namespace content {
class WebContents;
struct NativeWebKeyboardEvent;
-struct SSLStatus;
}
namespace extensions {
@@ -310,10 +310,11 @@ class BrowserWindow : public ui::BaseWindow {
// url of the page/frame the info applies to, |ssl| is the SSL information for
// that page/frame. If |show_history| is true, a section showing how many
// times that URL has been visited is added to the page info.
- virtual void ShowWebsiteSettings(Profile* profile,
- content::WebContents* web_contents,
- const GURL& url,
- const content::SSLStatus& ssl) = 0;
+ virtual void ShowWebsiteSettings(
+ Profile* profile,
+ content::WebContents* web_contents,
+ const GURL& url,
+ const SecurityStateModel::SecurityInfo& security_info) = 0;
// Shows the app menu (for accessibility).
virtual void ShowAppMenu() = 0;

Powered by Google App Engine
This is Rietveld 408576698