summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/inspector/InjectedScriptHost.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/inspector/InjectedScriptHost.idl')
-rw-r--r--chromium/third_party/WebKit/Source/core/inspector/InjectedScriptHost.idl9
1 files changed, 4 insertions, 5 deletions
diff --git a/chromium/third_party/WebKit/Source/core/inspector/InjectedScriptHost.idl b/chromium/third_party/WebKit/Source/core/inspector/InjectedScriptHost.idl
index 77e4cbe5cfa..5dec0fc5601 100644
--- a/chromium/third_party/WebKit/Source/core/inspector/InjectedScriptHost.idl
+++ b/chromium/third_party/WebKit/Source/core/inspector/InjectedScriptHost.idl
@@ -41,16 +41,15 @@
[Custom] boolean isHTMLAllCollection(any obj);
[Custom] DOMString type(any obj);
[Custom] any functionDetails(any obj);
- [Custom] Array getInternalProperties(any obj);
- [Custom] Array getEventListeners(Node node);
+ [Custom] any[] getInternalProperties(any obj);
+ [Custom] EventListener[] getEventListeners(EventTarget target);
[Custom] any evaluate(DOMString text);
- [Custom] DOMString databaseId(any database);
- [Custom] DOMString storageId(any storage);
[Custom] void debugFunction(any fn);
[Custom] void undebugFunction(any fn);
[Custom] void monitorFunction(any fn);
[Custom] void unmonitorFunction(any fn);
+ [Custom] any suppressWarningsAndCall(any receiver, any fn, any param1, any param2);
// Only declarative scope (local, with and catch) is accepted. Returns undefined.
- [Custom] any setFunctionVariableValue(any functionObject, int scopeIndex, DOMString variableName, any newValue);
+ [Custom] any setFunctionVariableValue(any functionObject, long scopeIndex, DOMString variableName, any newValue);
};