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

Unified Diff: core/inspector/InjectedScriptHost.idl

Issue 581453002: Dartium Roll 38 roll (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Sync'd w/ r 182210 Created 6 years, 3 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/InspectorFrontendHost.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 5dec0fc5601a36b62c383712f255d479615dfb7d..018f9d2107d3249cd702d66c9beba717dfec7e9d 100644
--- a/core/inspector/InjectedScriptHost.idl
+++ b/core/inspector/InjectedScriptHost.idl
@@ -31,25 +31,28 @@
*/
[
+ WillBeGarbageCollected,
NoInterfaceObject
] interface InjectedScriptHost {
- void clearConsoleMessages();
+ [NotEnumerable, Unforgeable] void clearConsoleMessages();
- [Custom] void inspect(any objectId, any hints);
- [Custom] any inspectedObject(long num);
- [Custom] any internalConstructorName(any obj);
- [Custom] boolean isHTMLAllCollection(any obj);
- [Custom] DOMString type(any obj);
- [Custom] any functionDetails(any obj);
- [Custom] any[] getInternalProperties(any obj);
- [Custom] EventListener[] getEventListeners(EventTarget target);
- [Custom] any evaluate(DOMString text);
- [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);
+ [NotEnumerable, Unforgeable, Custom] void inspect(any objectId, any hints);
+ [NotEnumerable, Unforgeable, Custom] any inspectedObject(long num);
+ [NotEnumerable, Unforgeable, Custom] any 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] any[] getInternalProperties(any obj);
+ [NotEnumerable, Unforgeable, Custom] EventListener[] 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);
// Only declarative scope (local, with and catch) is accepted. Returns undefined.
- [Custom] any setFunctionVariableValue(any functionObject, long scopeIndex, DOMString variableName, any newValue);
+ [NotEnumerable, Unforgeable, Custom] any setFunctionVariableValue(any functionObject, long scopeIndex, DOMString variableName, any newValue);
};
« no previous file with comments | « core/inspector/CodeGeneratorInstrumentation.py ('k') | core/inspector/InspectorFrontendHost.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698