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

Unified Diff: ash/shell.h

Issue 197883011: Enable maximize mode when keyboard is open past 180 degrees. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with master. Created 6 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 | « 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
diff --git a/ash/shell.h b/ash/shell.h
index bc84e1892ad95e2dc76a3c5e92becddfcabeaa05..d506f876536919dd14b9b15372f719d2ea668a2a 100644
--- a/ash/shell.h
+++ b/ash/shell.h
@@ -102,6 +102,7 @@ class LocaleNotificationController;
class LockStateController;
class LogoutConfirmationController;
class MagnificationController;
+class MaximizeModeController;
class MaximizeModeWindowManager;
class MediaDelegate;
class MouseCursorEventFilter;
@@ -496,6 +497,10 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
return accelerometer_controller_.get();
}
+ MaximizeModeController* maximize_mode_controller() {
+ return maximize_mode_controller_.get();
+ }
+
#if defined(OS_CHROMEOS)
// TODO(oshima): Move these objects to DisplayController.
ui::OutputConfigurator* output_configurator() {
@@ -719,6 +724,8 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
#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