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

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

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 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/common/wm/default_window_resizer.cc ('k') | ash/common/wm/dock/docked_window_layout_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/wm/dock/dock_types.h
diff --git a/ash/common/wm/dock/dock_types.h b/ash/common/wm/dock/dock_types.h
deleted file mode 100644
index 02e8b45027a3d1f1805588fd7c4ec88f1ab2c504..0000000000000000000000000000000000000000
--- a/ash/common/wm/dock/dock_types.h
+++ /dev/null
@@ -1,53 +0,0 @@
-// 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_COMMON_WM_DOCK_DOCK_TYPES_H_
-#define ASH_COMMON_WM_DOCK_DOCK_TYPES_H_
-
-namespace ash {
-
-// Possible values of which side of the screen the windows are docked at.
-// This is used by DockedwindowLayoutManager and DockedWindowResizer to
-// implement docking behavior including magnetism while dragging windows into
-// or out of the docked windows area.
-enum DockedAlignment {
- // No docked windows.
- DOCKED_ALIGNMENT_NONE,
-
- // Some windows are already docked on the left side of the screen.
- DOCKED_ALIGNMENT_LEFT,
-
- // Some windows are already docked on the right side of the screen.
- DOCKED_ALIGNMENT_RIGHT,
-};
-
-// User action recorded for use in UMA histograms.
-enum DockedAction {
- DOCKED_ACTION_NONE, // Regular drag of undocked window. Not recorded.
- DOCKED_ACTION_DOCK, // Dragged and docked a window.
- DOCKED_ACTION_UNDOCK, // Dragged and undocked a window.
- DOCKED_ACTION_RESIZE, // Resized a docked window.
- DOCKED_ACTION_REORDER, // Possibly reordered docked windows.
- DOCKED_ACTION_EVICT, // A docked window could not stay docked.
- DOCKED_ACTION_MAXIMIZE, // Maximized a docked window.
- DOCKED_ACTION_MINIMIZE, // Minimized a docked window.
- DOCKED_ACTION_RESTORE, // Restored a docked window that was minimized.
- DOCKED_ACTION_CLOSE, // Closed a window while it was docked.
- DOCKED_ACTION_COUNT, // Maximum value of this enum for histograms use.
-};
-
-// Event source for the docking user action (when known).
-enum DockedActionSource {
- DOCKED_ACTION_SOURCE_UNKNOWN,
- DOCKED_ACTION_SOURCE_MOUSE,
- DOCKED_ACTION_SOURCE_TOUCH,
- DOCKED_ACTION_SOURCE_KEYBOARD,
-
- // Maximum value of this enum for histograms use.
- DOCKED_ACTION_SOURCE_COUNT,
-};
-
-} // namespace ash
-
-#endif // ASH_COMMON_WM_DOCK_DOCK_TYPES_H_
« no previous file with comments | « ash/common/wm/default_window_resizer.cc ('k') | ash/common/wm/dock/docked_window_layout_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698