Index: third_party/WebKit/LayoutTests/inspector/profiler/agents-disabled-check.html |
diff --git a/third_party/WebKit/LayoutTests/inspector/profiler/agents-disabled-check.html b/third_party/WebKit/LayoutTests/inspector/profiler/agents-disabled-check.html |
index 37c528a2f15ee4d54904bebc0a3fe468b0eba2e1..4da046c86e0df83db96b17fbfcae8da3b337c0fa 100644 |
--- a/third_party/WebKit/LayoutTests/inspector/profiler/agents-disabled-check.html |
+++ b/third_party/WebKit/LayoutTests/inspector/profiler/agents-disabled-check.html |
@@ -12,7 +12,7 @@ function test() |
messages.push(message); |
} |
Protocol.TargetBase.prototype._dumpProtocolMessage = collectMessages; |
- InspectorBackendClass.Options.dumpInspectorProtocolMessages = 1; |
+ Protocol.InspectorBackend.Options.dumpInspectorProtocolMessages = 1; |
messages.push("--> SDK.targetManager.suspendAllTargets();"); |
SDK.targetManager.suspendAllTargets(); |
messages.push(""); |
@@ -20,7 +20,7 @@ function test() |
SDK.targetManager.resumeAllTargets(); |
messages.push(""); |
messages.push("--> done"); |
- InspectorBackendClass.Options.dumpInspectorProtocolMessages = 0; |
+ Protocol.InspectorBackend.Options.dumpInspectorProtocolMessages = 0; |
for (var i = 0; i < messages.length; ++i) { |
var message = messages[i]; |
message = message.replace(/"id":\d+,/, '"id":<number>,'); |