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

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

Issue 22938005: Add ErrorConsole UI for Extension Install Warnings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dc_ec_install_warnings
Patch Set: Created 7 years, 4 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_MANIFEST_CONSTANTS_H_ 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 extern const char kLocalesNoDefaultLocaleSpecified[]; 245 extern const char kLocalesNoDefaultLocaleSpecified[];
246 extern const char kLocalesNoDefaultMessages[]; 246 extern const char kLocalesNoDefaultMessages[];
247 extern const char kLocalesNoValidLocaleNamesListed[]; 247 extern const char kLocalesNoValidLocaleNamesListed[];
248 extern const char kLocalesTreeMissing[]; 248 extern const char kLocalesTreeMissing[];
249 extern const char kManifestParseError[]; 249 extern const char kManifestParseError[];
250 extern const char kManifestUnreadable[]; 250 extern const char kManifestUnreadable[];
251 extern const char kMissingFile[]; 251 extern const char kMissingFile[];
252 extern const char kMultipleOverrides[]; 252 extern const char kMultipleOverrides[];
253 extern const char kNoPermissionForMIMETypes[]; 253 extern const char kNoPermissionForMIMETypes[];
254 extern const char kNoWildCardsInPaths[]; 254 extern const char kNoWildCardsInPaths[];
255 extern const char kOneUISurfaceOnly[];
255 extern const char kPermissionMustBeOptional[]; 256 extern const char kPermissionMustBeOptional[];
256 extern const char kPermissionNotAllowed[]; 257 extern const char kPermissionNotAllowed[];
257 extern const char kPermissionNotAllowedInManifest[]; 258 extern const char kPermissionNotAllowedInManifest[];
258 extern const char kOneUISurfaceOnly[]; 259 extern const char kPermissionUnknownOrMalformed[];
259 extern const char kReservedMessageFound[]; 260 extern const char kReservedMessageFound[];
260 extern const char kScriptBadgeRequiresFlag[]; 261 extern const char kScriptBadgeRequiresFlag[];
261 extern const char kScriptBadgeIconIgnored[]; 262 extern const char kScriptBadgeIconIgnored[];
262 extern const char kScriptBadgeTitleIgnored[]; 263 extern const char kScriptBadgeTitleIgnored[];
264 extern const char kUnrecognizedManifestKey[];
263 extern const char kWebRequestConflictsWithLazyBackground[]; 265 extern const char kWebRequestConflictsWithLazyBackground[];
264 #if defined(OS_CHROMEOS) 266 #if defined(OS_CHROMEOS)
265 extern const char kIllegalPlugins[]; 267 extern const char kIllegalPlugins[];
266 #endif 268 #endif
267 } // namespace extension_manifest_errors 269 } // namespace extension_manifest_errors
268 270
269 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ 271 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698