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

Unified Diff: inspector/InjectedScriptHost.idl

Issue 13163002: Roll IDLs. (Closed) Base URL: http://dart.googlecode.com/svn/third_party/WebCore/
Patch Set: Created 7 years, 9 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
Index: inspector/InjectedScriptHost.idl
===================================================================
--- inspector/InjectedScriptHost.idl (revision 20375)
+++ inspector/InjectedScriptHost.idl (working copy)
@@ -46,9 +46,18 @@
[Custom] Array getInternalProperties(in any object);
[Custom] Array getEventListeners(in Node node);
+ // FIXME: Remove evaluateReturnsEvalFunction once InjectedScriptHost returns eval in evaluate on V8. https://webkit.org/b/113134
+ readonly attribute boolean evaluateReturnsEvalFunction;
+
+#if defined(V8_BINDING) && V8_BINDING
+ [Custom] any evaluate(in DOMString text);
+#else
+ [Custom] readonly attribute any evaluate;
+#endif
+
[Custom] DOMString databaseId(in any database);
[Custom] DOMString storageId(in any storage);
- [Custom] any evaluate(in DOMString text);
+
// Only declarative scope (local, with and catch) is accepted. Returns undefined.
[Custom] any setFunctionVariableValue(in any functionObject, in int scopeIndex, in DOMString variableName, any newValue);
};

Powered by Google App Engine
This is Rietveld 408576698