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

Unified Diff: ash/wm/dock/dock_types.h

Issue 13896026: Stick windows to sides of workspaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Dock with zero width (some tests disabled on Windows) 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: ash/wm/dock/dock_types.h
diff --git a/ash/wm/dock/dock_types.h b/ash/wm/dock/dock_types.h
new file mode 100644
index 0000000000000000000000000000000000000000..f9d229e98f964cb5450f930a9ded923ca306986a
--- /dev/null
+++ b/ash/wm/dock/dock_types.h
@@ -0,0 +1,23 @@
+// Copyright (c) 2013 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_DOCK_DOCK_TYPES_H_
+#define ASH_WM_DOCK_DOCK_TYPES_H_
+
+namespace ash {
+
+namespace internal {
+
+// Possible values of which side of the screen the windows are docked at.
+enum DockAlignment {
+ DOCK_ALIGNMENT_NONE,
sky 2013/06/12 21:50:17 DOCKED_ALIGNMENT?
varkha 2013/06/13 05:02:11 Done.
+ DOCK_ALIGNMENT_LEFT,
+ DOCK_ALIGNMENT_RIGHT,
+ DOCK_ALIGNMENT_ANY,
+};
+
+} // namespace internal
+} // namespace ash
+
+#endif // ASH_WM_DOCK_DOCK_TYPES_H_

Powered by Google App Engine
This is Rietveld 408576698