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

Unified Diff: ash/shell.h

Issue 236173003: Merge 261645 "Enable maximize mode when keyboard is open past 18..." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1916/src/
Patch Set: Created 6 years, 8 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 | « ash/ash.gyp ('k') | ash/shell.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shell.h
===================================================================
--- ash/shell.h (revision 263398)
+++ ash/shell.h (working copy)
@@ -85,6 +85,7 @@
class HighContrastController;
class LockStateController;
class MagnificationController;
+class MaximizeModeController;
class MediaDelegate;
class MruWindowTracker;
class NestedDispatcherController;
@@ -505,6 +506,10 @@
return accelerometer_controller_.get();
}
+ MaximizeModeController* maximize_mode_controller() {
+ return maximize_mode_controller_.get();
+ }
+
#if defined(OS_CHROMEOS)
#if defined(USE_X11)
// TODO(oshima): Move these objects to DisplayController.
@@ -735,6 +740,8 @@
#endif // defined(USE_X11)
#endif // defined(OS_CHROMEOS)
+ scoped_ptr<MaximizeModeController> maximize_mode_controller_;
+
// |native_cursor_manager_| is owned by |cursor_manager_|, but we keep a
// pointer to vend to test code.
AshNativeCursorManager* native_cursor_manager_;
« no previous file with comments | « ash/ash.gyp ('k') | ash/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698