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

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

Issue 1133013002: Improve parsing manifest for FSP API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed tests. Created 5 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
« no previous file with comments | « extensions/common/manifest_constants.h ('k') | no next file » | 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 "extensions/common/manifest_constants.h" 5 #include "extensions/common/manifest_constants.h"
6 6
7 namespace extensions { 7 namespace extensions {
8 8
9 namespace manifest_keys { 9 namespace manifest_keys {
10 10
(...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after
706 "Permission '*' is unknown or URL pattern is malformed."; 706 "Permission '*' is unknown or URL pattern is malformed.";
707 const char kReservedMessageFound[] = 707 const char kReservedMessageFound[] =
708 "Reserved key * found in message catalog."; 708 "Reserved key * found in message catalog.";
709 const char kUnrecognizedManifestKey[] = "Unrecognized manifest key '*'."; 709 const char kUnrecognizedManifestKey[] = "Unrecognized manifest key '*'.";
710 const char kUnrecognizedManifestProperty[] = 710 const char kUnrecognizedManifestProperty[] =
711 "Unrecognized property '*' of manifest key '*'."; 711 "Unrecognized property '*' of manifest key '*'.";
712 const char kWebRequestConflictsWithLazyBackground[] = 712 const char kWebRequestConflictsWithLazyBackground[] =
713 "The 'webRequest' API cannot be used with event pages."; 713 "The 'webRequest' API cannot be used with event pages.";
714 #if defined(OS_CHROMEOS) 714 #if defined(OS_CHROMEOS)
715 const char kIllegalPlugins[] = 715 const char kIllegalPlugins[] =
716 "Extensions cannot install plugins on Chrome OS"; 716 "Extensions cannot install plugins on Chrome OS.";
717 const char kInvalidFileSystemProviderMissingCapabilities[] =
718 "The 'fileSystemProvider' permission requires the "
719 "'file_system_provider_capabilities' section to be specified in the "
720 "manifest.";
721 const char kInvalidFileSystemProviderMissingPermission[] =
722 "The 'file_system_provider_capabilities' section requires the "
723 "'fileSystemProvider' permission to be specified in the manifest.";
717 #endif 724 #endif
718 725
719 } // namespace manifest_errors 726 } // namespace manifest_errors
720 727
721 } // namespace extensions 728 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/manifest_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698