Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(203)

Side by Side Diff: chrome/common/extensions/extension_constants.h

Issue 13971005: Basic multi-module support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix copyright for presubmit Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/_manifest_features.json ('k') | chrome/common/extensions/extension_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698