summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views/fullscreen_exit_bubble.h
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-12 00:40:23 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-12 00:40:23 +0000
commit7435b830a7b6d2a43f94afbcca57bbc102db2ef3 (patch)
tree2d1ad9b433280e617d94436db715e4dd313f7bf9 /chrome/browser/views/fullscreen_exit_bubble.h
parent71be2a6333fa5c30b2156556740946d298765a32 (diff)
downloadchromium_src-7435b830a7b6d2a43f94afbcca57bbc102db2ef3.zip
chromium_src-7435b830a7b6d2a43f94afbcca57bbc102db2ef3.tar.gz
chromium_src-7435b830a7b6d2a43f94afbcca57bbc102db2ef3.tar.bz2
Make fullscreen exit bubble link work by preventing the bubble from ever being activated. Not sure why this worked in the first place and then regressed.
BUG=8318 Review URL: http://codereview.chromium.org/43107 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11503 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/fullscreen_exit_bubble.h')
-rw-r--r--chrome/browser/views/fullscreen_exit_bubble.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/browser/views/fullscreen_exit_bubble.h b/chrome/browser/views/fullscreen_exit_bubble.h
index ff855be..3c950de 100644
--- a/chrome/browser/views/fullscreen_exit_bubble.h
+++ b/chrome/browser/views/fullscreen_exit_bubble.h
@@ -25,6 +25,7 @@ class FullscreenExitBubble : public views::LinkController,
private:
class FullscreenExitView;
+ class FullscreenExitPopup;
static const double kOpacity; // Opacity of the bubble, 0.0 - 1.0
static const int kInitialDelayMs; // Initial time bubble remains onscreen
@@ -60,9 +61,9 @@ class FullscreenExitBubble : public views::LinkController,
// it.
CommandUpdater::CommandUpdaterDelegate* delegate_;
- // We use an HWND for the popup so that it may float above any plugins in the
- // page.
- views::WidgetWin* popup_;
+ // The popup itself, which is a slightly modified WidgetWin. We need to use
+ // a WidgetWin (and thus an HWND) to make the popup float over other HWNDs.
+ FullscreenExitPopup* popup_;
// The contents of the popup.
FullscreenExitView* view_;