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

Unified Diff: chrome/browser/ui/views/location_bar/location_bar_view.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/views/location_bar/location_bar_view.h
diff --git a/chrome/browser/ui/views/location_bar/location_bar_view.h b/chrome/browser/ui/views/location_bar/location_bar_view.h
index 6e7b43b56c2b08dcd996be1874862928fd3e1401..b98df637dbc1e759c6f61b35d4c49f5336b8f2fb 100644
--- a/chrome/browser/ui/views/location_bar/location_bar_view.h
+++ b/chrome/browser/ui/views/location_bar/location_bar_view.h
@@ -50,10 +50,6 @@ class TemplateURLService;
class TranslateIconView;
class ZoomView;
-namespace content {
-struct SSLStatus;
-}
-
namespace views {
class BubbleDelegateView;
class ImageButton;
@@ -110,9 +106,10 @@ class LocationBarView : public LocationBar,
GetContentSettingBubbleModelDelegate() = 0;
// Shows permissions and settings for the given web contents.
- virtual void ShowWebsiteSettings(content::WebContents* web_contents,
- const GURL& url,
- const content::SSLStatus& ssl) = 0;
+ virtual void ShowWebsiteSettings(
+ content::WebContents* web_contents,
+ const GURL& url,
+ const SecurityStateModel::SecurityInfo& security_info) = 0;
protected:
virtual ~Delegate() {}

Powered by Google App Engine
This is Rietveld 408576698