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

Unified Diff: core/inspector/InjectedScriptHost.idl

Issue 959933002: Move IDLs to 39 roll (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 5 years, 10 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
« no previous file with comments | « core/inspector/CodeGeneratorInstrumentation.py ('k') | core/inspector/InspectorInstrumentation.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/inspector/InjectedScriptHost.idl
diff --git a/core/inspector/InjectedScriptHost.idl b/core/inspector/InjectedScriptHost.idl
index 018f9d2107d3249cd702d66c9beba717dfec7e9d..56f1e4dc24385c222d53d144cc5825c0c8112a1c 100644
--- a/core/inspector/InjectedScriptHost.idl
+++ b/core/inspector/InjectedScriptHost.idl
@@ -36,23 +36,25 @@
] interface InjectedScriptHost {
[NotEnumerable, Unforgeable] void clearConsoleMessages();
- [NotEnumerable, Unforgeable, Custom] void inspect(any objectId, any hints);
+ [NotEnumerable, Unforgeable, Custom] void inspect(any objectId, object hints);
[NotEnumerable, Unforgeable, Custom] any inspectedObject(long num);
- [NotEnumerable, Unforgeable, Custom] any internalConstructorName(any obj);
+ [NotEnumerable, Unforgeable, Custom] DOMString internalConstructorName(any obj);
[NotEnumerable, Unforgeable, Custom] boolean isHTMLAllCollection(any obj);
- [NotEnumerable, Unforgeable, Custom] DOMString type(any obj);
- [NotEnumerable, Unforgeable, Custom] any functionDetails(any obj);
+ [NotEnumerable, Unforgeable, Custom] DOMString subtype(any obj);
+ [NotEnumerable, Unforgeable, Custom] any functionDetails(Function obj);
+ [NotEnumerable, Unforgeable, Custom] any[]? collectionEntries(object obj);
[NotEnumerable, Unforgeable, Custom] any[] getInternalProperties(any obj);
- [NotEnumerable, Unforgeable, Custom] EventListener[] getEventListeners(EventTarget target);
+ [NotEnumerable, Unforgeable, Custom] any[] getEventListeners(EventTarget target);
[NotEnumerable, Unforgeable, Custom] any eval(DOMString text);
[NotEnumerable, Unforgeable, Custom] any evaluateWithExceptionDetails(DOMString text);
[NotEnumerable, Unforgeable, Custom] void debugFunction(any fn);
[NotEnumerable, Unforgeable, Custom] void undebugFunction(any fn);
[NotEnumerable, Unforgeable, Custom] void monitorFunction(any fn);
[NotEnumerable, Unforgeable, Custom] void unmonitorFunction(any fn);
- [NotEnumerable, Unforgeable, Custom] any callFunction(any fn, any receiver, any[] argv);
- [NotEnumerable, Unforgeable, Custom] any suppressWarningsAndCallFunction(any fn, any receiver, any[] argv);
+ [NotEnumerable, Unforgeable, Custom] any callFunction(Function fn, any receiver, optional any[] argv);
+ [NotEnumerable, Unforgeable, Custom] any suppressWarningsAndCallFunction(Function fn, any receiver, optional any[] argv);
+ [NotEnumerable, Unforgeable, Custom] void setNonEnumProperty(object obj, DOMString key, any value);
// Only declarative scope (local, with and catch) is accepted. Returns undefined.
- [NotEnumerable, Unforgeable, Custom] any setFunctionVariableValue(any functionObject, long scopeIndex, DOMString variableName, any newValue);
+ [NotEnumerable, Unforgeable, Custom] any setFunctionVariableValue(Function functionObject, long scopeIndex, DOMString variableName, any newValue);
};
« no previous file with comments | « core/inspector/CodeGeneratorInstrumentation.py ('k') | core/inspector/InspectorInstrumentation.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698