| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/watch-expressions-panel-switch.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/watch-expressions-panel-switch.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/watch-expressions-panel-switch.html
|
| index 0401924737f3ca78810ae997566da51b53cb24a7..0a83f73f37745e31cc24196f1d6fd1d375c70282 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/watch-expressions-panel-switch.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/watch-expressions-panel-switch.html
|
| @@ -19,13 +19,13 @@ function test()
|
| InspectorTest.startDebuggerTest(step1);
|
| var updateCount = 8;
|
|
|
| - WebInspector.settings.createLocalSetting("watchExpressions", []).set(["x", "y.foo"]);
|
| + Common.settings.createLocalSetting("watchExpressions", []).set(["x", "y.foo"]);
|
|
|
| function step1()
|
| {
|
| - watchExpressionsPane = self.runtime.sharedInstance(WebInspector.WatchExpressionsSidebarPane);
|
| - WebInspector.panels.sources._sidebarPaneStack.showView(WebInspector.panels.sources._watchSidebarPane).then(() => {
|
| - InspectorTest.addSniffer(WebInspector.WatchExpression.prototype, "_createWatchExpression", watchExpressionsUpdated, true);
|
| + watchExpressionsPane = self.runtime.sharedInstance(Sources.WatchExpressionsSidebarPane);
|
| + UI.panels.sources._sidebarPaneStack.showView(UI.panels.sources._watchSidebarPane).then(() => {
|
| + InspectorTest.addSniffer(Sources.WatchExpression.prototype, "_createWatchExpression", watchExpressionsUpdated, true);
|
| InspectorTest.evaluateInPage("testFunction()");
|
| });
|
| }
|
|
|