| 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_ASH_CONSTANTS_H_ | 5 #ifndef ASH_COMMON_ASH_CONSTANTS_H_ |
| 6 #define ASH_ASH_CONSTANTS_H_ | 6 #define ASH_COMMON_ASH_CONSTANTS_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ui/aura/window.h" | |
| 10 #include "ui/base/ui_base_types.h" | |
| 11 | 9 |
| 12 typedef unsigned int SkColor; | 10 typedef unsigned int SkColor; |
| 13 | 11 |
| 14 namespace ash { | 12 namespace ash { |
| 15 | 13 |
| 16 // In the window corners, the resize areas don't actually expand bigger, but the | 14 // In the window corners, the resize areas don't actually expand bigger, but the |
| 17 // 16 px at the end of each edge triggers diagonal resizing. | 15 // 16 px at the end of each edge triggers diagonal resizing. |
| 18 ASH_EXPORT extern const int kResizeAreaCornerSize; | 16 ASH_EXPORT extern const int kResizeAreaCornerSize; |
| 19 | 17 |
| 20 // Ash windows do not have a traditional visible window frame. Window content | 18 // Ash windows do not have a traditional visible window frame. Window content |
| (...skipping 11 matching lines...) Expand all Loading... |
| 32 | 30 |
| 33 // The border color of keyboard focus for launcher items and system tray. | 31 // The border color of keyboard focus for launcher items and system tray. |
| 34 extern const SkColor kFocusBorderColor; | 32 extern const SkColor kFocusBorderColor; |
| 35 | 33 |
| 36 // How many pixels are reserved for touch-events towards the top of an | 34 // How many pixels are reserved for touch-events towards the top of an |
| 37 // immersive-fullscreen window. | 35 // immersive-fullscreen window. |
| 38 extern const int kImmersiveFullscreenTopEdgeInset; | 36 extern const int kImmersiveFullscreenTopEdgeInset; |
| 39 | 37 |
| 40 } // namespace ash | 38 } // namespace ash |
| 41 | 39 |
| 42 #endif // ASH_ASH_CONSTANTS_H_ | 40 #endif // ASH_COMMON_ASH_CONSTANTS_H_ |
| OLD | NEW |