| OLD | NEW |
| (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_ | |
| OLD | NEW |