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

Unified Diff: chrome/browser/ui/views/frame/immersive_mode_controller_ash.h

Issue 16998006: Add handling for immersive fullscreen to the zoom bubble (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix ZoomBubbleBrowserTest.NonImmersiveFullscreen Created 7 years, 6 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/frame/immersive_mode_controller_ash.h
diff --git a/chrome/browser/ui/views/frame/immersive_mode_controller_ash.h b/chrome/browser/ui/views/frame/immersive_mode_controller_ash.h
index c72c17de5c8293a8b7cec3b1a8af5de54052acb2..09e3cda3d30e8575710289addca23878b64a4a6a 100644
--- a/chrome/browser/ui/views/frame/immersive_mode_controller_ash.h
+++ b/chrome/browser/ui/views/frame/immersive_mode_controller_ash.h
@@ -252,6 +252,10 @@ class ImmersiveModeControllerAsh : public ImmersiveModeController,
// the top edge of the screen.
int mouse_x_when_hit_top_;
+ // Tracks if the controller has seen a ET_GESTURE_SCROLL_BEGIN, without the
+ // following events.
+ bool gesture_begun_;
+
// The current visible bounds of the find bar, in screen coordinates. This is
// an empty rect if the find bar is not visible.
gfx::Rect find_bar_visible_bounds_in_screen_;
@@ -284,10 +288,6 @@ class ImmersiveModeControllerAsh : public ImmersiveModeController,
base::WeakPtrFactory<ImmersiveModeControllerAsh> weak_ptr_factory_;
- // Tracks if the controller has seen a ET_GESTURE_SCROLL_BEGIN, without the
- // following events.
- bool gesture_begun_;
-
DISALLOW_COPY_AND_ASSIGN(ImmersiveModeControllerAsh);
};

Powered by Google App Engine
This is Rietveld 408576698