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

Side by Side Diff: ash/shelf/shelf_types.h

Issue 2036353002: mash: Move ash/common/wm/shelf to ash/common/shelf (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gyp Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef ASH_SHELF_SHELF_TYPES_H_
6 #define ASH_SHELF_SHELF_TYPES_H_
7
8 // TODO(sky): make callers explicitly include this.
9 #include "ash/common/wm/shelf/wm_shelf_types.h"
10
11 namespace ash {
12
13 enum ShelfAutoHideBehavior {
14 // Always auto-hide.
15 SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS,
16
17 // Never auto-hide.
18 SHELF_AUTO_HIDE_BEHAVIOR_NEVER,
19
20 // Always hide.
21 SHELF_AUTO_HIDE_ALWAYS_HIDDEN,
22 };
23
24 enum ShelfAutoHideState {
25 SHELF_AUTO_HIDE_SHOWN,
26 SHELF_AUTO_HIDE_HIDDEN,
27 };
28
29 } // namespace ash
30
31 #endif // ASH_SHELF_SHELF_TYPES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698