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

Unified Diff: test/inspector/debugger/script-parsed-hash.js

Issue 2390733002: [inspector] Make InspectorTest.sendCommand* private (Closed)
Patch Set: addressed comments Created 4 years, 2 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: test/inspector/debugger/script-parsed-hash.js
diff --git a/test/inspector/debugger/script-parsed-hash.js b/test/inspector/debugger/script-parsed-hash.js
index c4beebac353720efee5bf0888425e1b465f53e41..5dd1dfacee4b00664c1879f469eec00f26341589 100644
--- a/test/inspector/debugger/script-parsed-hash.js
+++ b/test/inspector/debugger/script-parsed-hash.js
@@ -5,14 +5,13 @@
var hashes = new Set(["1C6D2E82E4E4F1BA4CB5762843D429DC872EBA18",
"EBF1ECD351E7A3294CB5762843D429DC872EBA18",
"86A31E7131896CF01BA837945C2894385F369F24"]);
-InspectorTest.sendCommandOrDie("Debugger.enable", {}, function() {
- InspectorTest.eventHandler["Debugger.scriptParsed"] = function(messageObject)
- {
- if (hashes.has(messageObject.params.hash))
- InspectorTest.log(`Hash received: ${messageObject.params.hash}`);
- else
- InspectorTest.log(`[FAIL]: unknown hash ${messageObject.params.hash}`);
- }
+Protocol.Debugger.enable();
+Protocol.Debugger.onScriptParsed(function(messageObject)
+{
+ if (hashes.has(messageObject.params.hash))
+ InspectorTest.log(`Hash received: ${messageObject.params.hash}`);
+ else
+ InspectorTest.log(`[FAIL]: unknown hash ${messageObject.params.hash}`);
});
function longScript() {
@@ -21,10 +20,10 @@ function longScript() {
longScript += "++b;";
}
-InspectorTest.sendCommandOrDie("Runtime.enable");
-InspectorTest.sendCommandOrDie("Runtime.compileScript", { expression: "1", sourceURL: "foo1.js", persistScript: true });
-InspectorTest.sendCommandOrDie("Runtime.compileScript", { expression: "239", sourceURL: "foo2.js", persistScript: true });
-InspectorTest.sendCommandOrDie("Runtime.compileScript", { expression: "(" + longScript + ")()", sourceURL: "foo3.js", persistScript: true }, step2);
+Protocol.Runtime.enable();
+Protocol.Runtime.compileScript({ expression: "1", sourceURL: "foo1.js", persistScript: true });
+Protocol.Runtime.compileScript({ expression: "239", sourceURL: "foo2.js", persistScript: true });
+Protocol.Runtime.compileScript({ expression: "(" + longScript + ")()", sourceURL: "foo3.js", persistScript: true }).then(step2);
function step2()
{

Powered by Google App Engine
This is Rietveld 408576698