| 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 CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 | 73 |
| 74 // The extension id of the bookmark manager. | 74 // The extension id of the bookmark manager. |
| 75 extern const char kBookmarkManagerId[]; | 75 extern const char kBookmarkManagerId[]; |
| 76 | 76 |
| 77 // The extension id of the Chrome component application. | 77 // The extension id of the Chrome component application. |
| 78 extern const char kChromeAppId[]; | 78 extern const char kChromeAppId[]; |
| 79 | 79 |
| 80 // The extension id of the Cloud Print component application. | 80 // The extension id of the Cloud Print component application. |
| 81 extern const char kCloudPrintAppId[]; | 81 extern const char kCloudPrintAppId[]; |
| 82 | 82 |
| 83 // The extension id of the Easy Unlock component application. |
| 84 extern const char kEasyUnlockAppId[]; |
| 85 |
| 83 // The extension id of the Enterprise Web Store component application. | 86 // The extension id of the Enterprise Web Store component application. |
| 84 extern const char kEnterpriseWebStoreAppId[]; | 87 extern const char kEnterpriseWebStoreAppId[]; |
| 85 | 88 |
| 86 // The extension id of GMail application. | 89 // The extension id of GMail application. |
| 87 extern const char kGmailAppId[]; | 90 extern const char kGmailAppId[]; |
| 88 | 91 |
| 89 // The extension id of the Google Doc application. | 92 // The extension id of the Google Doc application. |
| 90 extern const char kGoogleDocAppId[]; | 93 extern const char kGoogleDocAppId[]; |
| 91 | 94 |
| 92 // The extension id of the Google Play Music application. | 95 // The extension id of the Google Play Music application. |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 LAUNCH_CONTAINER_WINDOW, | 340 LAUNCH_CONTAINER_WINDOW, |
| 338 LAUNCH_CONTAINER_PANEL, | 341 LAUNCH_CONTAINER_PANEL, |
| 339 LAUNCH_CONTAINER_TAB, | 342 LAUNCH_CONTAINER_TAB, |
| 340 // For platform apps, which don't actually have a container (they just get a | 343 // For platform apps, which don't actually have a container (they just get a |
| 341 // "onLaunched" event). | 344 // "onLaunched" event). |
| 342 LAUNCH_CONTAINER_NONE | 345 LAUNCH_CONTAINER_NONE |
| 343 }; | 346 }; |
| 344 } // namespace extensions | 347 } // namespace extensions |
| 345 | 348 |
| 346 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 349 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |