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

Unified Diff: third_party/WebKit/Source/devtools/front_end/devtools.js

Issue 1819243002: [DevTools] Use InspectorFrontendHost.readyForTest for layout tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ready-for-test
Patch Set: resource-tree-reload.html fix Created 4 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: third_party/WebKit/Source/devtools/front_end/devtools.js
diff --git a/third_party/WebKit/Source/devtools/front_end/devtools.js b/third_party/WebKit/Source/devtools/front_end/devtools.js
index 7ccf4487f8fe281a550ccdcfb5380983e7382f0a..8733c4a9492bf474e7ae78a0b08fb083a84232a5 100644
--- a/third_party/WebKit/Source/devtools/front_end/devtools.js
+++ b/third_party/WebKit/Source/devtools/front_end/devtools.js
@@ -161,6 +161,15 @@ DevToolsAPIImpl.prototype = {
},
/**
+ * @param {number} callId
+ * @param {string} script
+ */
+ evaluateForTestInFrontend: function(callId, script)
+ {
+ this._dispatchOnInspectorFrontendAPI("evaluateForTestInFrontend", [callId, script]);
+ },
+
+ /**
* @param {!Array.<!{fileSystemName: string, rootURL: string, fileSystemPath: string}>} fileSystems
*/
fileSystemsLoaded: function(fileSystems)

Powered by Google App Engine
This is Rietveld 408576698