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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 | 102 |
103 // The extension id of the HTerm app for ChromeOS. | 103 // The extension id of the HTerm app for ChromeOS. |
104 extern const char kHTermAppId[]; | 104 extern const char kHTermAppId[]; |
105 | 105 |
106 // The extension id of the HTerm dev app for ChromeOS. | 106 // The extension id of the HTerm dev app for ChromeOS. |
107 extern const char kHTermDevAppId[]; | 107 extern const char kHTermDevAppId[]; |
108 | 108 |
109 // The extension id of the Crosh component app for ChromeOS. | 109 // The extension id of the Crosh component app for ChromeOS. |
110 extern const char kCroshBuiltinAppId[]; | 110 extern const char kCroshBuiltinAppId[]; |
111 | 111 |
| 112 // The extension id of the PDF extension. |
| 113 extern const char kPdfExtensionId[]; |
| 114 |
112 // The extension id of the Office Viewer component extension. | 115 // The extension id of the Office Viewer component extension. |
113 extern const char kQuickOfficeComponentExtensionId[]; | 116 extern const char kQuickOfficeComponentExtensionId[]; |
114 | 117 |
115 // The extension id of the Office Viewer dev extension. | 118 // The extension id of the Office Viewer dev extension. |
116 extern const char kQuickOfficeDevExtensionId[]; | 119 extern const char kQuickOfficeDevExtensionId[]; |
117 | 120 |
118 // The extension id of the Office Viewer extension. | 121 // The extension id of the Office Viewer extension. |
119 extern const char kQuickOfficeExtensionId[]; | 122 extern const char kQuickOfficeExtensionId[]; |
120 | 123 |
121 // The extension id of the settings application. | 124 // The extension id of the settings application. |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 // List of sizes for extension icons that can be defined in the manifest. | 304 // List of sizes for extension icons that can be defined in the manifest. |
302 extern const int kExtensionActionIconSizes[]; | 305 extern const int kExtensionActionIconSizes[]; |
303 extern const size_t kNumExtensionActionIconSizes; | 306 extern const size_t kNumExtensionActionIconSizes; |
304 | 307 |
305 // List of sizes for extension icons that can be defined in the manifest. | 308 // List of sizes for extension icons that can be defined in the manifest. |
306 extern const int kScriptBadgeIconSizes[]; | 309 extern const int kScriptBadgeIconSizes[]; |
307 extern const size_t kNumScriptBadgeIconSizes; | 310 extern const size_t kNumScriptBadgeIconSizes; |
308 } // namespace extension_misc | 311 } // namespace extension_misc |
309 | 312 |
310 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 313 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |