| Index: third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| index 695c0a1c7a6fc2a644aa5f4e6d8df1582131316b..4fd9a0caa3974f727918646298d0fba805b6ab0b 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| @@ -956,7 +956,7 @@ Sources.SourcesPanel = class extends UI.Panel {
|
| if (wasThrown || !result || result.type !== 'string') {
|
| failedToSave(result);
|
| } else {
|
| - SDK.consoleModel.evaluateCommandInConsole(
|
| + ConsoleModel.consoleModel.evaluateCommandInConsole(
|
| /** @type {!SDK.ExecutionContext} */ (currentExecutionContext), result.value,
|
| /* useCommandLineAPI */ false);
|
| }
|
| @@ -1268,7 +1268,7 @@ Sources.SourcesPanel.DebuggingActionDelegate = class {
|
| var text = frame.textEditor.text(frame.textEditor.selection());
|
| var executionContext = UI.context.flavor(SDK.ExecutionContext);
|
| if (executionContext)
|
| - SDK.consoleModel.evaluateCommandInConsole(executionContext, text, /* useCommandLineAPI */ true);
|
| + ConsoleModel.consoleModel.evaluateCommandInConsole(executionContext, text, /* useCommandLineAPI */ true);
|
| }
|
| return true;
|
| }
|
|
|