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

Unified Diff: tools/dom/idl/dart/dart.idl

Issue 258503008: Support Dart debugger API directly (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: ready Created 6 years, 7 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 | « tools/dom/dom.json ('k') | tools/dom/src/html_native_DOMImplementation.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/idl/dart/dart.idl
diff --git a/tools/dom/idl/dart/dart.idl b/tools/dom/idl/dart/dart.idl
index d4353b38b95d62822d00468a8f5d4837c6ad1f4e..cdf46f30108ed9fb2c51f8d4cafa3ceaf114d7d6 100644
--- a/tools/dom/idl/dart/dart.idl
+++ b/tools/dom/idl/dart/dart.idl
@@ -324,8 +324,24 @@ interface XMLHttpRequest {
interface AbstractView {};
-[Suppressed]
-interface InjectedScriptHost {};
+interface InjectedScriptHost {
+ [Custom] void inspect(any objectId, any hints);
+ [Suppressed, Custom] any inspectedObject(long num);
+ [Suppressed, Custom] any internalConstructorName(any obj);
+ [Suppressed, Custom] boolean isHTMLAllCollection(any obj);
+ [Suppressed, Custom] DOMString type(any obj);
+ [Suppressed, Custom] any functionDetails(any obj);
+ [Suppressed, Custom] any[] getInternalProperties(any obj);
+ [Suppressed, Custom] EventListener[] getEventListeners(EventTarget target);
+ [Suppressed, Custom] any evaluate(DOMString text);
+ [Suppressed, Custom] void debugFunction(any fn);
+ [Suppressed, Custom] void undebugFunction(any fn);
+ [Suppressed, Custom] void monitorFunction(any fn);
+ [Suppressed, Custom] void unmonitorFunction(any fn);
+
+ // Only declarative scope (local, with and catch) is accepted. Returns undefined.
+ [Suppressed, Custom] any setFunctionVariableValue(any functionObject, long scopeIndex, DOMString variableName, any newValue);
+};
[Suppressed]
« no previous file with comments | « tools/dom/dom.json ('k') | tools/dom/src/html_native_DOMImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698