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 19 matching lines...) Expand all Loading... |
30 | 30 |
31 // The extension id of the bookmark manager. | 31 // The extension id of the bookmark manager. |
32 extern const char kBookmarkManagerId[]; | 32 extern const char kBookmarkManagerId[]; |
33 | 33 |
34 // The extension id of the Chrome component application. | 34 // The extension id of the Chrome component application. |
35 extern const char kChromeAppId[]; | 35 extern const char kChromeAppId[]; |
36 | 36 |
37 // The extension id of the Cloud Print component application. | 37 // The extension id of the Cloud Print component application. |
38 extern const char kCloudPrintAppId[]; | 38 extern const char kCloudPrintAppId[]; |
39 | 39 |
| 40 // The extension id of the Data Saver extension. |
| 41 extern const char kDataSaverExtensionId[]; |
| 42 |
40 // The extension id of the Easy Unlock component application. | 43 // The extension id of the Easy Unlock component application. |
41 extern const char kEasyUnlockAppId[]; | 44 extern const char kEasyUnlockAppId[]; |
42 | 45 |
43 // The extension id of the Enterprise Web Store component application. | 46 // The extension id of the Enterprise Web Store component application. |
44 extern const char kEnterpriseWebStoreAppId[]; | 47 extern const char kEnterpriseWebStoreAppId[]; |
45 | 48 |
46 // The extension id of GMail application. | 49 // The extension id of GMail application. |
47 extern const char kGmailAppId[]; | 50 extern const char kGmailAppId[]; |
48 | 51 |
49 // The extension id of the Google Doc application. | 52 // The extension id of the Google Doc application. |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 // The path part of the file system url used for media file systems. | 238 // The path part of the file system url used for media file systems. |
236 extern const char kMediaFileSystemPathPart[]; | 239 extern const char kMediaFileSystemPathPart[]; |
237 | 240 |
238 // The key used for signing some pieces of data from the webstore. | 241 // The key used for signing some pieces of data from the webstore. |
239 extern const uint8 kWebstoreSignaturesPublicKey[]; | 242 extern const uint8 kWebstoreSignaturesPublicKey[]; |
240 extern const int kWebstoreSignaturesPublicKeySize; | 243 extern const int kWebstoreSignaturesPublicKeySize; |
241 | 244 |
242 } // namespace extension_misc | 245 } // namespace extension_misc |
243 | 246 |
244 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 247 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |