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

Unified Diff: chrome/browser/views/fullscreen_exit_bubble.h

Issue 42137: Merge 11503 - Make fullscreen exit bubble link work by preventing the bubble ... (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/branches/169/src/
Patch Set: Created 11 years, 9 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
« no previous file with comments | « no previous file | chrome/browser/views/fullscreen_exit_bubble.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/views/fullscreen_exit_bubble.h
===================================================================
--- chrome/browser/views/fullscreen_exit_bubble.h (revision 11543)
+++ chrome/browser/views/fullscreen_exit_bubble.h (working copy)
@@ -25,6 +25,7 @@
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 @@
// 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_;
« no previous file with comments | « no previous file | chrome/browser/views/fullscreen_exit_bubble.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698