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_LAUNCHER_LAUNCHER_TYPES_H_ | 5 #ifndef ASH_LAUNCHER_LAUNCHER_TYPES_H_ |
6 #define ASH_LAUNCHER_LAUNCHER_TYPES_H_ | 6 #define ASH_LAUNCHER_LAUNCHER_TYPES_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 TYPE_APP_SHORTCUT, | 33 TYPE_APP_SHORTCUT, |
34 | 34 |
35 // Toggles visiblity of the app list. | 35 // Toggles visiblity of the app list. |
36 TYPE_APP_LIST, | 36 TYPE_APP_LIST, |
37 | 37 |
38 // The browser shortcut button. | 38 // The browser shortcut button. |
39 TYPE_BROWSER_SHORTCUT, | 39 TYPE_BROWSER_SHORTCUT, |
40 | 40 |
41 // Represents a platform app. | 41 // Represents a platform app. |
42 TYPE_PLATFORM_APP, | 42 TYPE_PLATFORM_APP, |
| 43 |
| 44 // Represents a windowed V1 browser app. |
| 45 TYPE_WINDOWED_APP, |
43 }; | 46 }; |
44 | 47 |
45 // Represents the status of pinned or running app launcher items. | 48 // Represents the status of pinned or running app launcher items. |
46 enum LauncherItemStatus { | 49 enum LauncherItemStatus { |
47 // A closed LauncherItem, i.e. has no live instance. | 50 // A closed LauncherItem, i.e. has no live instance. |
48 STATUS_CLOSED, | 51 STATUS_CLOSED, |
49 // A LauncherItem that has live instance. | 52 // A LauncherItem that has live instance. |
50 STATUS_RUNNING, | 53 STATUS_RUNNING, |
51 // An active LauncherItem that has focus. | 54 // An active LauncherItem that has focus. |
52 STATUS_ACTIVE, | 55 STATUS_ACTIVE, |
(...skipping 26 matching lines...) Expand all Loading... |
79 | 82 |
80 // The direction of the focus cycling. | 83 // The direction of the focus cycling. |
81 enum CycleDirection { | 84 enum CycleDirection { |
82 CYCLE_FORWARD, | 85 CYCLE_FORWARD, |
83 CYCLE_BACKWARD | 86 CYCLE_BACKWARD |
84 }; | 87 }; |
85 | 88 |
86 } // namespace ash | 89 } // namespace ash |
87 | 90 |
88 #endif // ASH_LAUNCHER_LAUNCHER_TYPES_H_ | 91 #endif // ASH_LAUNCHER_LAUNCHER_TYPES_H_ |
OLD | NEW |