OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_CONSTANTS_H_ | 5 #ifndef ASH_SHELF_SHELF_CONSTANTS_H_ |
6 #define ASH_COMMON_SHELF_SHELF_CONSTANTS_H_ | 6 #define ASH_SHELF_SHELF_CONSTANTS_H_ |
7 | 7 |
8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
9 #include "third_party/skia/include/core/SkColor.h" | 9 #include "third_party/skia/include/core/SkColor.h" |
10 | 10 |
11 namespace ash { | 11 namespace ash { |
12 | 12 |
13 enum ShelfConstant { | 13 enum ShelfConstant { |
14 // Size of the shelf when visible (height when the shelf is horizontal and | 14 // Size of the shelf when visible (height when the shelf is horizontal and |
15 // width when the shelf is vertical). | 15 // width when the shelf is vertical). |
16 SHELF_SIZE, | 16 SHELF_SIZE, |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 // The radius of the circular material design app list button. | 72 // The radius of the circular material design app list button. |
73 extern const int kAppListButtonRadius; | 73 extern const int kAppListButtonRadius; |
74 | 74 |
75 // The direction of the focus cycling. | 75 // The direction of the focus cycling. |
76 enum CycleDirection { CYCLE_FORWARD, CYCLE_BACKWARD }; | 76 enum CycleDirection { CYCLE_FORWARD, CYCLE_BACKWARD }; |
77 | 77 |
78 ASH_EXPORT int GetShelfConstant(ShelfConstant shelf_constant); | 78 ASH_EXPORT int GetShelfConstant(ShelfConstant shelf_constant); |
79 | 79 |
80 } // namespace ash | 80 } // namespace ash |
81 | 81 |
82 #endif // ASH_COMMON_SHELF_SHELF_CONSTANTS_H_ | 82 #endif // ASH_SHELF_SHELF_CONSTANTS_H_ |
OLD | NEW |