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 735c0da494a7bae09eacf94970f0e9491d70f397..695c0a1c7a6fc2a644aa5f4e6d8df1582131316b 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( |
+ SDK.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); |
+ SDK.consoleModel.evaluateCommandInConsole(executionContext, text, /* useCommandLineAPI */ true); |
} |
return true; |
} |