| 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 3273a06b1cc3d7f1d2980aac1f34672194829958..4b2d127e7c31e197f4eb88a23a0574719c413972 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.Target.prototype._dumpProtocolMessage = collectMessages;
|
| - InspectorBackendClass.Options.dumpInspectorProtocolMessages = 1;
|
| + Protocol.Options.dumpInspectorProtocolMessages = 1;
|
| messages.push("--> WebInspector.targetManager.suspendAllTargets();");
|
| WebInspector.targetManager.suspendAllTargets();
|
| messages.push("");
|
| @@ -20,7 +20,7 @@ function test()
|
| WebInspector.targetManager.resumeAllTargets();
|
| messages.push("");
|
| messages.push("--> done");
|
| - InspectorBackendClass.Options.dumpInspectorProtocolMessages = 0;
|
| + Protocol.Options.dumpInspectorProtocolMessages = 0;
|
| for (var i = 0; i < messages.length; ++i) {
|
| var message = messages[i];
|
| message = message.replace(/"id":\d+,/, '"id":<number>,');
|
|
|