| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 // List of sizes for extension icons that can be defined in the manifest. | 306 // List of sizes for extension icons that can be defined in the manifest. |
| 304 extern const int kExtensionActionIconSizes[]; | 307 extern const int kExtensionActionIconSizes[]; |
| 305 extern const size_t kNumExtensionActionIconSizes; | 308 extern const size_t kNumExtensionActionIconSizes; |
| 306 | 309 |
| 307 // List of sizes for extension icons that can be defined in the manifest. | 310 // List of sizes for extension icons that can be defined in the manifest. |
| 308 extern const int kScriptBadgeIconSizes[]; | 311 extern const int kScriptBadgeIconSizes[]; |
| 309 extern const size_t kNumScriptBadgeIconSizes; | 312 extern const size_t kNumScriptBadgeIconSizes; |
| 310 } // namespace extension_misc | 313 } // namespace extension_misc |
| 311 | 314 |
| 312 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 315 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |