OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef ASH_COMMON_SHELF_SHELF_TYPES_H_ | 5 #ifndef ASH_PUBLIC_CPP_SHELF_TYPES_H_ |
6 #define ASH_COMMON_SHELF_SHELF_TYPES_H_ | 6 #define ASH_PUBLIC_CPP_SHELF_TYPES_H_ |
7 | 7 |
8 namespace ash { | 8 namespace ash { |
9 | 9 |
10 enum ShelfAlignment { | 10 enum ShelfAlignment { |
11 SHELF_ALIGNMENT_BOTTOM, | 11 SHELF_ALIGNMENT_BOTTOM, |
12 SHELF_ALIGNMENT_LEFT, | 12 SHELF_ALIGNMENT_LEFT, |
13 SHELF_ALIGNMENT_RIGHT, | 13 SHELF_ALIGNMENT_RIGHT, |
14 // Top has never been supported. | 14 // Top has never been supported. |
15 | 15 |
16 // The locked alignment is set temporarily and not saved to preferences. | 16 // The locked alignment is set temporarily and not saved to preferences. |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 | 50 |
51 // The background when a window is overlapping. | 51 // The background when a window is overlapping. |
52 SHELF_BACKGROUND_OVERLAP, | 52 SHELF_BACKGROUND_OVERLAP, |
53 | 53 |
54 // The background when a window is maximized. | 54 // The background when a window is maximized. |
55 SHELF_BACKGROUND_MAXIMIZED, | 55 SHELF_BACKGROUND_MAXIMIZED, |
56 }; | 56 }; |
57 | 57 |
58 } // namespace ash | 58 } // namespace ash |
59 | 59 |
60 #endif // ASH_COMMON_SHELF_SHELF_TYPES_H_ | 60 #endif // ASH_PUBLIC_CPP_SHELF_TYPES_H_ |
OLD | NEW |