| 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/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
| 10 #include "ui/base/layout.h" | 10 #include "ui/base/layout.h" |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 SOURCE_RESTART, | 119 SOURCE_RESTART, |
| 120 SOURCE_LOAD_AND_LAUNCH, | 120 SOURCE_LOAD_AND_LAUNCH, |
| 121 SOURCE_COMMAND_LINE, | 121 SOURCE_COMMAND_LINE, |
| 122 SOURCE_FILE_HANDLER, | 122 SOURCE_FILE_HANDLER, |
| 123 SOURCE_URL_HANDLER, | 123 SOURCE_URL_HANDLER, |
| 124 SOURCE_SYSTEM_TRAY, | 124 SOURCE_SYSTEM_TRAY, |
| 125 SOURCE_ABOUT_PAGE, | 125 SOURCE_ABOUT_PAGE, |
| 126 SOURCE_KEYBOARD, | 126 SOURCE_KEYBOARD, |
| 127 SOURCE_EXTENSIONS_PAGE, | 127 SOURCE_EXTENSIONS_PAGE, |
| 128 SOURCE_MANAGEMENT_API, | 128 SOURCE_MANAGEMENT_API, |
| 129 SOURCE_EPHEMERAL_APP, | 129 SOURCE_EPHEMERAL_APP_UNUSED, |
| 130 SOURCE_BACKGROUND, | 130 SOURCE_BACKGROUND, |
| 131 SOURCE_KIOSK, | 131 SOURCE_KIOSK, |
| 132 SOURCE_CHROME_INTERNAL, | 132 SOURCE_CHROME_INTERNAL, |
| 133 SOURCE_TEST, | 133 SOURCE_TEST, |
| 134 | 134 |
| 135 NUM_APP_LAUNCH_SOURCES | 135 NUM_APP_LAUNCH_SOURCES |
| 136 }; | 136 }; |
| 137 | 137 |
| 138 // 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 |
| 139 // application. | 139 // application. |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 | 225 |
| 226 // The extension id for the production version of Hangouts. | 226 // The extension id for the production version of Hangouts. |
| 227 extern const char kProdHangoutsExtensionId[]; | 227 extern const char kProdHangoutsExtensionId[]; |
| 228 | 228 |
| 229 // Extension ids used by Hangouts. | 229 // Extension ids used by Hangouts. |
| 230 extern const char* const kHangoutsExtensionIds[6]; | 230 extern const char* const kHangoutsExtensionIds[6]; |
| 231 | 231 |
| 232 } // namespace extension_misc | 232 } // namespace extension_misc |
| 233 | 233 |
| 234 #endif // EXTENSIONS_COMMON_CONSTANTS_H_ | 234 #endif // EXTENSIONS_COMMON_CONSTANTS_H_ |
| OLD | NEW |