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

Unified Diff: extensions/common/manifest_constants.cc

Issue 22793018: <webview>: Implement support for package-local chrome-extension:// URLs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated Created 7 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: extensions/common/manifest_constants.cc
diff --git a/extensions/common/manifest_constants.cc b/extensions/common/manifest_constants.cc
index 7ab1d23ad179ea296717e19c9c493c5946aeec6b..c204cbc8a30d9620dac4a46aa4e480c42b0ae2f2 100644
--- a/extensions/common/manifest_constants.cc
+++ b/extensions/common/manifest_constants.cc
@@ -148,6 +148,9 @@ const char kUrlHandlerTitle[] = "title";
const char kVersion[] = "version";
const char kWebAccessibleResources[] = "web_accessible_resources";
const char kWebURLs[] = "app.urls";
+const char kWebview[] = "webview";
+const char kWebviewAccessibleResources[] = "accessible_resources";
+const char kWebviewPrivilegedPartitions[] = "privileged_partitions";
} // namespace manifest_keys
@@ -577,6 +580,16 @@ const char kInvalidWebAccessibleResourcesList[] =
"Invalid value for 'web_accessible_resources'.";
const char kInvalidWebAccessibleResource[] =
"Invalid value for 'web_accessible_resources[*]'.";
+const char kInvalidWebview[] =
+ "Invalid value for 'webview'.";
+const char kInvalidWebviewAccessibleResourcesList[] =
+ "Invalid value for'webview_accessible_resources'.";
Matt Perry 2013/09/25 01:13:54 webview.accessible_resources
Fady Samuel 2013/09/25 03:29:31 Done.
+const char kInvalidWebviewAccessibleResource[] =
+ "Invalid value for 'webview_accessible_resources[*]'.";
Matt Perry 2013/09/25 01:13:54 etc
Fady Samuel 2013/09/25 03:29:31 Done.
+const char kInvalidWebviewPrivilegedPartitionList[] =
+ "Invalid value for 'webview_privileged_partitions'.";
+const char kInvalidWebviewPrivilegedPartition[] =
+ "Invalid value for 'webview_privileged_partitions[*]'.";
const char kInvalidWebURL[] =
"Invalid value for 'app.urls[*]': *";
const char kInvalidWebURLs[] =
« chrome/common/extensions/webview_handler.cc ('K') | « extensions/common/manifest_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698