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

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

Issue 1618073002: Extensions - Check for too big or too small product icons. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 11 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
« no previous file with comments | « extensions/common/manifest_constants.h ('k') | extensions/common/manifest_handler_helpers.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "build/build_config.h" 5 #include "build/build_config.h"
6 #include "extensions/common/manifest_constants.h" 6 #include "extensions/common/manifest_constants.h"
7 7
8 namespace extensions { 8 namespace extensions {
9 9
10 namespace manifest_keys { 10 namespace manifest_keys {
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 const char kInvalidFileHandlerTypeElement[] = 399 const char kInvalidFileHandlerTypeElement[] =
400 "Invalid value for 'file_handlers[*].types[*]'."; 400 "Invalid value for 'file_handlers[*].types[*]'.";
401 const char kInvalidGlob[] = 401 const char kInvalidGlob[] =
402 "Invalid value for 'content_scripts[*].*[*]'."; 402 "Invalid value for 'content_scripts[*].*[*]'.";
403 const char kInvalidGlobList[] = 403 const char kInvalidGlobList[] =
404 "Invalid value for 'content_scripts[*].*'."; 404 "Invalid value for 'content_scripts[*].*'.";
405 const char kInvalidHomepageOverrideURL[] = 405 const char kInvalidHomepageOverrideURL[] =
406 "Invalid value for overriding homepage url: '[*]'."; 406 "Invalid value for overriding homepage url: '[*]'.";
407 const char kInvalidHomepageURL[] = 407 const char kInvalidHomepageURL[] =
408 "Invalid value for homepage url: '[*]'."; 408 "Invalid value for homepage url: '[*]'.";
409 const char kInvalidIconKey[] = "Invalid key in icons: \"*\".";
409 const char kInvalidIconPath[] = 410 const char kInvalidIconPath[] =
410 "Invalid value for 'icons[\"*\"]'."; 411 "Invalid value for 'icons[\"*\"]'.";
411 const char kInvalidIcons[] = 412 const char kInvalidIcons[] =
412 "Invalid value for 'icons'."; 413 "Invalid value for 'icons'.";
413 const char kInvalidImport[] = 414 const char kInvalidImport[] =
414 "Invalid value for 'import'."; 415 "Invalid value for 'import'.";
415 const char kInvalidImportAndExport[] = 416 const char kInvalidImportAndExport[] =
416 "Simultaneous 'import' and 'export' are not allowed."; 417 "Simultaneous 'import' and 'export' are not allowed.";
417 const char kInvalidImportId[] = 418 const char kInvalidImportId[] =
418 "Invalid value for 'import[*].id'."; 419 "Invalid value for 'import[*].id'.";
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 "'file_system_provider_capabilities' section to be specified in the " 733 "'file_system_provider_capabilities' section to be specified in the "
733 "manifest."; 734 "manifest.";
734 const char kInvalidFileSystemProviderMissingPermission[] = 735 const char kInvalidFileSystemProviderMissingPermission[] =
735 "The 'file_system_provider_capabilities' section requires the " 736 "The 'file_system_provider_capabilities' section requires the "
736 "'fileSystemProvider' permission to be specified in the manifest."; 737 "'fileSystemProvider' permission to be specified in the manifest.";
737 #endif 738 #endif
738 739
739 } // namespace manifest_errors 740 } // namespace manifest_errors
740 741
741 } // namespace extensions 742 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/manifest_constants.h ('k') | extensions/common/manifest_handler_helpers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698