| 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_FRAME_CAPTION_BUTTONS_CAPTION_BUTTON_TYPES_H_ | 5 #ifndef ASH_FRAME_CAPTION_BUTTONS_CAPTION_BUTTON_TYPES_H_ |
| 6 #define ASH_FRAME_CAPTION_BUTTONS_CAPTION_BUTTON_TYPES_H_ | 6 #define ASH_FRAME_CAPTION_BUTTONS_CAPTION_BUTTON_TYPES_H_ |
| 7 | 7 |
| 8 namespace ash { | 8 namespace ash { |
| 9 | 9 |
| 10 // These are the icon types that a caption button can have. The size button's | 10 // These are the icon types that a caption button can have. The size button's |
| 11 // action (SnapType) can be different from its icon. | 11 // action (SnapType) can be different from its icon. |
| 12 enum CaptionButtonIcon { | 12 enum CaptionButtonIcon { |
| 13 CAPTION_BUTTON_ICON_MINIMIZE, | 13 CAPTION_BUTTON_ICON_MINIMIZE, |
| 14 CAPTION_BUTTON_ICON_MAXIMIZE_RESTORE, | 14 CAPTION_BUTTON_ICON_MAXIMIZE_RESTORE, |
| 15 CAPTION_BUTTON_ICON_CLOSE, | 15 CAPTION_BUTTON_ICON_CLOSE, |
| 16 CAPTION_BUTTON_ICON_LEFT_SNAPPED, | 16 CAPTION_BUTTON_ICON_LEFT_SNAPPED, |
| 17 CAPTION_BUTTON_ICON_RIGHT_SNAPPED, | 17 CAPTION_BUTTON_ICON_RIGHT_SNAPPED, |
| 18 CAPTION_BUTTON_ICON_BACK, | 18 CAPTION_BUTTON_ICON_BACK, |
| 19 CAPTION_BUTTON_ICON_LOCATION, | 19 CAPTION_BUTTON_ICON_LOCATION, |
| 20 CAPTION_BUTTON_ICON_COUNT | 20 CAPTION_BUTTON_ICON_COUNT |
| 21 }; | 21 }; |
| 22 | 22 |
| 23 } // namespace ash | 23 } // namespace ash |
| 24 | 24 |
| 25 #endif // ASH_FRAME_CAPTION_BUTTONS_CAPTION_BUTTON_TYPES_H_ | 25 #endif // ASH_FRAME_CAPTION_BUTTONS_CAPTION_BUTTON_TYPES_H_ |
| OLD | NEW |