diff options
Diffstat (limited to 'chrome/common/extensions/api')
5 files changed, 16 insertions, 13 deletions
diff --git a/chrome/common/extensions/api/app.json b/chrome/common/extensions/api/app.json index 52e9327..0d70277 100644 --- a/chrome/common/extensions/api/app.json +++ b/chrome/common/extensions/api/app.json @@ -46,6 +46,7 @@ "parameters": [ { "type": "string", + "name": "state", "enum": [ "not_installed", "installed", "disabled" ] } ] diff --git a/chrome/common/extensions/api/devtools/experimental_audits.json b/chrome/common/extensions/api/devtools/experimental_audits.json index 31cdc82..b9107bc 100644 --- a/chrome/common/extensions/api/devtools/experimental_audits.json +++ b/chrome/common/extensions/api/devtools/experimental_audits.json @@ -80,7 +80,7 @@ "description": "Creates a result node that may be used as the <code>details</code> parameters to the <code>addResult()</code> method.", "parameters": [ { - "name": "content ...", + "name": "content", "choices": [ { "type": "string" }, { "$ref": "FormattedValue" } @@ -149,7 +149,7 @@ "description": "Adds a child node to this node.", "parameters": [ { - "name": "content ...", + "name": "content", "choices": [ { "type": "string" }, { "$ref": "FormattedValue" } diff --git a/chrome/common/extensions/api/runtime.json b/chrome/common/extensions/api/runtime.json index 1740358..37dcaba 100644 --- a/chrome/common/extensions/api/runtime.json +++ b/chrome/common/extensions/api/runtime.json @@ -5,6 +5,7 @@ [ { "namespace": "runtime", + "dependencies": [ "events", "tabs" ], "documentation_permissions_required": ["runtime"], "types": [ { diff --git a/chrome/common/extensions/api/sync_file_system.idl b/chrome/common/extensions/api/sync_file_system.idl index 46f0dae..4a65744 100644 --- a/chrome/common/extensions/api/sync_file_system.idl +++ b/chrome/common/extensions/api/sync_file_system.idl @@ -4,17 +4,6 @@ namespace syncFileSystem { - dictionary StorageInfo { - long usage_bytes; - long quota_bytes; - }; - - dictionary SyncState { - DOMString service_name; // i.e. ‘drive’ - SyncStateStatus state; - DOMString description; - }; - enum SyncOperationResult { added, updated, deleted, conflicted }; @@ -56,6 +45,17 @@ namespace syncFileSystem { conflicting }; + dictionary StorageInfo { + long usage_bytes; + long quota_bytes; + }; + + dictionary SyncState { + DOMString service_name; // i.e. ‘drive’ + SyncStateStatus state; + DOMString description; + }; + // [nodoc] A callback type for requestFileSystem. callback GetFileSystemCallback = void ([instanceOf=DOMFileSystem] object fileSystem); diff --git a/chrome/common/extensions/api/web_request_internal.json b/chrome/common/extensions/api/web_request_internal.json index e401a01..c5b8aac 100644 --- a/chrome/common/extensions/api/web_request_internal.json +++ b/chrome/common/extensions/api/web_request_internal.json @@ -5,6 +5,7 @@ [ { "namespace": "webRequestInternal", + "dependencies": ["webRequest"], "nodoc": true, "internal": true, "functions": [ |