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

Side by Side Diff: extensions/common/manifest_constants.h

Issue 71303009: Fix browser crash when parsing invalid Settings Override extension (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ 5 #ifndef EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_
6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ 6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_
7 7
8 namespace extensions { 8 namespace extensions {
9 9
10 // Keys used in JSON representation of extensions. 10 // Keys used in JSON representation of extensions.
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 extern const char kInvalidPlugins[]; 374 extern const char kInvalidPlugins[];
375 extern const char kInvalidPluginsPath[]; 375 extern const char kInvalidPluginsPath[];
376 extern const char kInvalidPluginsPublic[]; 376 extern const char kInvalidPluginsPublic[];
377 extern const char kInvalidRequirement[]; 377 extern const char kInvalidRequirement[];
378 extern const char kInvalidRequirements[]; 378 extern const char kInvalidRequirements[];
379 extern const char kInvalidRunAt[]; 379 extern const char kInvalidRunAt[];
380 extern const char kInvalidSandboxedPagesList[]; 380 extern const char kInvalidSandboxedPagesList[];
381 extern const char kInvalidSandboxedPage[]; 381 extern const char kInvalidSandboxedPage[];
382 extern const char kInvalidSandboxedPagesCSP[]; 382 extern const char kInvalidSandboxedPagesCSP[];
383 extern const char kInvalidScriptBadge[]; 383 extern const char kInvalidScriptBadge[];
384 extern const char kInvalidSearchEngineURL[];
384 extern const char kInvalidEmptySettingsOverrides[]; 385 extern const char kInvalidEmptySettingsOverrides[];
385 extern const char kInvalidShortName[]; 386 extern const char kInvalidShortName[];
386 extern const char kInvalidSignature[]; 387 extern const char kInvalidSignature[];
387 extern const char kInvalidSpellcheck[]; 388 extern const char kInvalidSpellcheck[];
388 extern const char kInvalidSpellcheckDictionaryFormat[]; 389 extern const char kInvalidSpellcheckDictionaryFormat[];
389 extern const char kInvalidSpellcheckDictionaryLanguage[]; 390 extern const char kInvalidSpellcheckDictionaryLanguage[];
390 extern const char kInvalidSpellcheckDictionaryLocale[]; 391 extern const char kInvalidSpellcheckDictionaryLocale[];
391 extern const char kInvalidSpellcheckDictionaryPath[]; 392 extern const char kInvalidSpellcheckDictionaryPath[];
392 extern const char kInvalidStartupOverrideURL[]; 393 extern const char kInvalidStartupOverrideURL[];
393 extern const char kInvalidSystemIndicator[]; 394 extern const char kInvalidSystemIndicator[];
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 extern const char kWebRequestConflictsWithLazyBackground[]; 450 extern const char kWebRequestConflictsWithLazyBackground[];
450 #if defined(OS_CHROMEOS) 451 #if defined(OS_CHROMEOS)
451 extern const char kIllegalPlugins[]; 452 extern const char kIllegalPlugins[];
452 #endif 453 #endif
453 454
454 } // namespace manifest_errors 455 } // namespace manifest_errors
455 456
456 } // namespace extensions 457 } // namespace extensions
457 458
458 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ 459 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698