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

Unified Diff: chrome/common/extensions/api/extension.json

Issue 15091002: Lazily load API schemas from resource files and convert all APIs to features (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/extension.json
diff --git a/chrome/common/extensions/api/extension.json b/chrome/common/extensions/api/extension.json
index a6844d20aa82673351891952bf1a8bd09d68f81d..a0ad9250d5d4fa7e1b73a5baf0e875e6b3e079ba 100644
--- a/chrome/common/extensions/api/extension.json
+++ b/chrome/common/extensions/api/extension.json
@@ -23,7 +23,6 @@
"lastError": {
"type": "object",
"optional": true,
- "unprivileged": true,
"description": "Set for the lifetime of a callback if an ansychronous extension api has resulted in an error. If no error has occured lastError will be <var>undefined</var>.",
"properties": {
"message": { "type": "string", "description": "Description of the error that has taken place." }
@@ -32,7 +31,6 @@
"inIncognitoContext": {
"type": "boolean",
"optional": true,
- "unprivileged": true,
"description": "True for content scripts running inside incognito tabs, and for extension pages running inside an incognito process. The latter only applies to extensions with 'split' incognito_behavior."
}
},
@@ -43,7 +41,6 @@
"nodoc": true,
"type": "function",
"allowAmbiguousOptionalArguments": true,
- "unprivileged": true,
"description": "Deprecated: Please use sendMessage.",
"parameters": [
{"type": "string", "name": "extensionId", "optional": true, "description": "The extension ID of the extension you want to connect to. If omitted, default is your own extension."},
@@ -66,7 +63,6 @@
"name": "getURL",
"nocompile": true,
"type": "function",
- "unprivileged": true,
"description": "Converts a relative path within an extension install directory to a fully-qualified URL.",
"parameters": [
{
@@ -190,7 +186,6 @@
"nodoc": true,
"type": "function",
"anonymous": true,
- "unprivileged": true,
"description": "Deprecated: please use onMessage.",
"parameters": [
{"name": "request", "type": "any", "description": "The request sent by the calling script."},

Powered by Google App Engine
This is Rietveld 408576698