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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 // The file to write our decoded images to, relative to the extension_path. | 57 // The file to write our decoded images to, relative to the extension_path. |
58 extern const char kDecodedImagesFilename[]; | 58 extern const char kDecodedImagesFilename[]; |
59 | 59 |
60 // The file to write our decoded message catalogs to, relative to the | 60 // The file to write our decoded message catalogs to, relative to the |
61 // extension_path. | 61 // extension_path. |
62 extern const char kDecodedMessageCatalogsFilename[]; | 62 extern const char kDecodedMessageCatalogsFilename[]; |
63 | 63 |
64 // The filename to use for a background page generated from | 64 // The filename to use for a background page generated from |
65 // background.scripts. | 65 // background.scripts. |
66 extern const char kGeneratedBackgroundPageFilename[]; | 66 extern const char kGeneratedBackgroundPageFilename[]; |
| 67 |
| 68 // Path to imported modules. |
| 69 extern const char kModulesDir[]; |
67 } | 70 } |
68 | 71 |
69 // Keys in the dictionary returned by Extension::GetBasicInfo(). | 72 // Keys in the dictionary returned by Extension::GetBasicInfo(). |
70 namespace extension_info_keys { | 73 namespace extension_info_keys { |
71 extern const char kDescriptionKey[]; | 74 extern const char kDescriptionKey[]; |
72 extern const char kEnabledKey[]; | 75 extern const char kEnabledKey[]; |
73 extern const char kHomepageUrlKey[]; | 76 extern const char kHomepageUrlKey[]; |
74 extern const char kIdKey[]; | 77 extern const char kIdKey[]; |
75 extern const char kNameKey[]; | 78 extern const char kNameKey[]; |
76 extern const char kKioskEnabledKey[]; | 79 extern const char kKioskEnabledKey[]; |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 extern const int kExtensionActionIconSizes[]; | 302 extern const int kExtensionActionIconSizes[]; |
300 extern const size_t kNumExtensionActionIconSizes; | 303 extern const size_t kNumExtensionActionIconSizes; |
301 | 304 |
302 // List of sizes for extension icons that can be defined in the manifest. | 305 // List of sizes for extension icons that can be defined in the manifest. |
303 extern const int kScriptBadgeIconSizes[]; | 306 extern const int kScriptBadgeIconSizes[]; |
304 extern const size_t kNumScriptBadgeIconSizes; | 307 extern const size_t kNumScriptBadgeIconSizes; |
305 | 308 |
306 } // extension_misc | 309 } // extension_misc |
307 | 310 |
308 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 311 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |