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

Unified Diff: chrome/browser/ui/cocoa/website_settings_bubble_controller.h

Issue 10831280: [Mac] Website settings: Add cookie info & permission icons, plus other visual fixes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unit tests. Created 8 years, 4 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/website_settings_bubble_controller.h
diff --git a/chrome/browser/ui/cocoa/website_settings_bubble_controller.h b/chrome/browser/ui/cocoa/website_settings_bubble_controller.h
index ff8cf19b80f6670434c7262714f10e68ffece90e..a793a19393c57e40830fd5aeaff6b78432abc9e2 100644
--- a/chrome/browser/ui/cocoa/website_settings_bubble_controller.h
+++ b/chrome/browser/ui/cocoa/website_settings_bubble_controller.h
@@ -26,7 +26,14 @@ class WebsiteSettingsUIBridge;
// Display the identity status (e.g. verified, not verified).
NSTextField* identityStatusField_;
- NSView* permissionsContentView_;
+ // The main content view for the Permissions tab.
+ NSView* permissionsTabContentView_;
+
+ // Container for cookies info on the Permissions tab.
+ NSView* cookiesView_;
+
+ // Container for permission info on the Permissions tab.
+ NSView* permissionsView_;
NSImageView* identityStatusIcon_;
NSTextField* identityStatusDescriptionField_;
@@ -40,8 +47,6 @@ class WebsiteSettingsUIBridge;
NSTextField* firstVisitHeaderField_;
NSTextField* firstVisitDescriptionField_;
- CGFloat permissionsTabHeight_;
-
// The UI translates user actions to specific events and forwards them to the
// |presenter_|. The |presenter_| handles these events and updates the UI.
scoped_ptr<WebsiteSettings> presenter_;

Powered by Google App Engine
This is Rietveld 408576698