| Index: chrome/common/extensions/api/extension.json
|
| diff --git a/chrome/common/extensions/api/extension.json b/chrome/common/extensions/api/extension.json
|
| index 0ac4a34d7ffa3ee24eb7e08b438f3797802e50a7..5aca5e42aadd994ae2e34ae9a5f1400965226700 100644
|
| --- a/chrome/common/extensions/api/extension.json
|
| +++ b/chrome/common/extensions/api/extension.json
|
| @@ -148,7 +148,7 @@
|
| "returns": {
|
| "type": "array",
|
| "description": "Array of global objects",
|
| - "items": { "type": "object", "isInstanceOf": "Window", "additionalProperties": { "type": "any" } }
|
| + "items": { "type": "object", "isInstanceOf": "global", "additionalProperties": { "type": "any" } }
|
| }
|
| },
|
| {
|
| @@ -157,7 +157,7 @@
|
| "description": "Returns the JavaScript 'window' object for the background page running inside the current extension. Returns null if the extension has no background page.",
|
| "parameters": [],
|
| "returns": {
|
| - "type": "object", "isInstanceOf": "Window", "additionalProperties": { "type": "any" }
|
| + "type": "object", "isInstanceOf": "global", "additionalProperties": { "type": "any" }
|
| }
|
| },
|
| {
|
| @@ -172,7 +172,7 @@
|
| "returns": {
|
| "type": "array",
|
| "description": "Array of global window objects",
|
| - "items": { "type": "object", "isInstanceOf": "Window", "additionalProperties": { "type": "any" } }
|
| + "items": { "type": "object", "isInstanceOf": "global", "additionalProperties": { "type": "any" } }
|
| }
|
| },
|
| {
|
|
|