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

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

Issue 390019: Parse messages.json in ExtensionUnpacker (like we do for manifest).... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 // Keys used in JSON representation of extensions. 8 // Keys used in JSON representation of extensions.
9 namespace extension_manifest_keys { 9 namespace extension_manifest_keys {
10 extern const wchar_t* kBackground; 10 extern const wchar_t* kBackground;
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 extern const char* kInvalidThemeColors; 116 extern const char* kInvalidThemeColors;
117 extern const char* kInvalidThemeTints; 117 extern const char* kInvalidThemeTints;
118 extern const char* kOneUISurfaceOnly; 118 extern const char* kOneUISurfaceOnly;
119 extern const char* kThemesCannotContainExtensions; 119 extern const char* kThemesCannotContainExtensions;
120 extern const char* kManifestParseError; 120 extern const char* kManifestParseError;
121 extern const char* kManifestUnreadable; 121 extern const char* kManifestUnreadable;
122 extern const char* kMissingFile; 122 extern const char* kMissingFile;
123 extern const char* kInvalidUpdateURL; 123 extern const char* kInvalidUpdateURL;
124 extern const char* kInvalidDefaultLocale; 124 extern const char* kInvalidDefaultLocale;
125 extern const char* kLocalesNoDefaultLocaleSpecified; 125 extern const char* kLocalesNoDefaultLocaleSpecified;
126 extern const char* kLocalesNoDefaultMessages;
126 extern const char* kLocalesNoValidLocaleNamesListed; 127 extern const char* kLocalesNoValidLocaleNamesListed;
128 extern const char* kLocalesTreeMissing;
129 extern const char* kLocalesMessagesFileMissing;
127 extern const char* kInvalidOptionsPage; 130 extern const char* kInvalidOptionsPage;
128 } // namespace extension_manifest_errors 131 } // namespace extension_manifest_errors
129 132
130 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ 133 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698