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

Unified Diff: ash/shelf_types.h

Issue 12313118: Refactor: Shelf Widget (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 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
Index: ash/shelf_types.h
diff --git a/ash/shelf_types.h b/ash/shelf_types.h
deleted file mode 100644
index ac35c58d0708998e1662836bfa612928fc595e44..0000000000000000000000000000000000000000
--- a/ash/shelf_types.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// 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_SHELF_TYPES_H_
-#define ASH_SHELF_TYPES_H_
-
-namespace ash {
-
-enum ShelfAlignment {
- SHELF_ALIGNMENT_BOTTOM,
- SHELF_ALIGNMENT_LEFT,
- SHELF_ALIGNMENT_RIGHT,
- SHELF_ALIGNMENT_TOP,
-};
-
-enum ShelfAutoHideBehavior {
- // Always auto-hide.
- SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS,
-
- // Never auto-hide.
- SHELF_AUTO_HIDE_BEHAVIOR_NEVER,
-
- // Always hide.
- SHELF_AUTO_HIDE_ALWAYS_HIDDEN,
-};
-
-enum ShelfVisibilityState {
- // Always visible.
- SHELF_VISIBLE,
-
- // A couple of pixels are reserved at the bottom for the shelf.
- SHELF_AUTO_HIDE,
-
- // Nothing is shown. Used for fullscreen windows.
- SHELF_HIDDEN,
-};
-
-enum ShelfAutoHideState {
- SHELF_AUTO_HIDE_SHOWN,
- SHELF_AUTO_HIDE_HIDDEN,
-};
-
-} // namespace ash
-
-#endif // ASH_SHELF_TYPES_H_

Powered by Google App Engine
This is Rietveld 408576698