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 EXTENSIONS_COMMON_CONSTANTS_H_ | 5 #ifndef EXTENSIONS_COMMON_CONSTANTS_H_ |
6 #define EXTENSIONS_COMMON_CONSTANTS_H_ | 6 #define EXTENSIONS_COMMON_CONSTANTS_H_ |
7 | 7 |
8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
9 #include "ui/base/layout.h" | 9 #include "ui/base/layout.h" |
10 | 10 |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 SOURCE_SYSTEM_TRAY, | 123 SOURCE_SYSTEM_TRAY, |
124 SOURCE_ABOUT_PAGE, | 124 SOURCE_ABOUT_PAGE, |
125 SOURCE_KEYBOARD, | 125 SOURCE_KEYBOARD, |
126 SOURCE_EXTENSIONS_PAGE, | 126 SOURCE_EXTENSIONS_PAGE, |
127 SOURCE_MANAGEMENT_API, | 127 SOURCE_MANAGEMENT_API, |
128 SOURCE_EPHEMERAL_APP_DEPRECATED, | 128 SOURCE_EPHEMERAL_APP_DEPRECATED, |
129 SOURCE_BACKGROUND, | 129 SOURCE_BACKGROUND, |
130 SOURCE_KIOSK, | 130 SOURCE_KIOSK, |
131 SOURCE_CHROME_INTERNAL, | 131 SOURCE_CHROME_INTERNAL, |
132 SOURCE_TEST, | 132 SOURCE_TEST, |
| 133 SOURCE_INSTALLED_NOTIFICATION, |
133 | 134 |
134 NUM_APP_LAUNCH_SOURCES | 135 NUM_APP_LAUNCH_SOURCES |
135 }; | 136 }; |
136 | 137 |
137 // This enum is used for the launch type the user wants to use for an | 138 // This enum is used for the launch type the user wants to use for an |
138 // application. | 139 // application. |
139 // Do not remove items or re-order this enum as it is used in preferences | 140 // Do not remove items or re-order this enum as it is used in preferences |
140 // and histograms. | 141 // and histograms. |
141 enum LaunchType { | 142 enum LaunchType { |
142 LAUNCH_TYPE_INVALID = -1, | 143 LAUNCH_TYPE_INVALID = -1, |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 | 207 |
207 // The extension id for the production version of Hangouts. | 208 // The extension id for the production version of Hangouts. |
208 extern const char kProdHangoutsExtensionId[]; | 209 extern const char kProdHangoutsExtensionId[]; |
209 | 210 |
210 // Extension ids used by Hangouts. | 211 // Extension ids used by Hangouts. |
211 extern const char* const kHangoutsExtensionIds[6]; | 212 extern const char* const kHangoutsExtensionIds[6]; |
212 | 213 |
213 } // namespace extension_misc | 214 } // namespace extension_misc |
214 | 215 |
215 #endif // EXTENSIONS_COMMON_CONSTANTS_H_ | 216 #endif // EXTENSIONS_COMMON_CONSTANTS_H_ |
OLD | NEW |