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

Unified Diff: ash/wm/workspace/maximize_types.h

Issue 10883069: Added restore functionality for maximize full/left/right (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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: ash/wm/workspace/maximize_types.h
diff --git a/ash/wm/workspace/maximize_types.h b/ash/wm/workspace/maximize_types.h
new file mode 100644
index 0000000000000000000000000000000000000000..9ccdae36fcf0b2979d8d35c0aad155615cf1ef3f
--- /dev/null
+++ b/ash/wm/workspace/maximize_types.h
@@ -0,0 +1,22 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef ASH_WM_WORKSPACE_MAXIMIZE_TYPES_H_
+#define ASH_WM_WORKSPACE_MAXIMIZE_TYPES_H_
+
+namespace ash {
+
+// These are the types of maximization we know.
+enum MaximizeType {
+ MAXIMIZE_NONE = 0,
+ MAXIMIZE_FULL = 1,
+ MAXIMIZE_LEFT = 2,
+ MAXIMIZE_RIGHT = 3
+};
+
+} // namespace views
+
+#endif // ASH_WM_WORKSPACE_MAXIMIZE_TYPES_H_
+
+

Powered by Google App Engine
This is Rietveld 408576698