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

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

Issue 151593005: Implement permission bubble view for Cocoa. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed variable name Created 6 years, 10 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_controller.h
diff --git a/chrome/browser/ui/cocoa/browser_window_controller.h b/chrome/browser/ui/cocoa/browser_window_controller.h
index c1b15df8e51967a687cb9a9e97782cab50fdfd7b..b108c6e0434b6ab3e3a4b29d7bbc05b6447a5431 100644
--- a/chrome/browser/ui/cocoa/browser_window_controller.h
+++ b/chrome/browser/ui/cocoa/browser_window_controller.h
@@ -38,6 +38,7 @@ class ExtensionKeybindingRegistryCocoa;
@class InfoBarContainerController;
class LocationBarViewMac;
@class OverlayableContentsController;
+class PermissionBubbleCocoa;
@class PresentationModeController;
class StatusBubbleMac;
@class TabStripController;
@@ -121,6 +122,9 @@ class WebContents;
// window in fullscreen mode, so this is always nil on Lion.
base::scoped_nsobject<NSWindow> fullscreenWindow_;
+ // The Cocoa implementation of the PermissionBubbleView.
+ scoped_ptr<PermissionBubbleCocoa> permissionBubbleCocoa_;
+
// Tracks whether presentation mode was entered from fullscreen mode or
// directly from normal windowed mode. Used to determine what to do when
// exiting presentation mode.

Powered by Google App Engine
This is Rietveld 408576698