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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js

Issue 2453673002: [DevTools] Scope common protocol infrastructure under Protocol namespace in a separate module. (Closed)
Patch Set: 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: third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
index 354836d470d7c4a7574cae90207910a16268b4a7..366298d1fab3d602eac0c7b9bceeaea7d73b16fd 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
@@ -24,8 +24,8 @@ console.assert = function(condition, object)
InspectorTest.startDumpingProtocolMessages = function()
{
- InspectorBackendClass.Connection.prototype._dumpProtocolMessage = testRunner.logToStderr.bind(testRunner);
- InspectorBackendClass.Options.dumpInspectorProtocolMessages = 1;
+ Protocol.Target.prototype._dumpProtocolMessage = testRunner.logToStderr.bind(testRunner);
+ Protocol.Options.dumpInspectorProtocolMessages = 1;
}
InspectorTest.completeTest = function()

Powered by Google App Engine
This is Rietveld 408576698