| Index: third_party/WebKit/Source/devtools/front_end/console/ConsolePrompt.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/console/ConsolePrompt.js b/third_party/WebKit/Source/devtools/front_end/console/ConsolePrompt.js
|
| index 6ab4ec7a32c4698bc2bc52cd3a80814f172eeabc..446623988581e38799086092474a3eff4b421ee1 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/console/ConsolePrompt.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/console/ConsolePrompt.js
|
| @@ -274,7 +274,7 @@ WebInspector.ConsolePrompt.prototype = {
|
| var prefix = this._editor.text(prefixRange);
|
| var before = this._editor.text(new WebInspector.TextRange(0, 0, prefixRange.startLine, prefixRange.startColumn));
|
| var historyWords = this._historyCompletions(prefix);
|
| - return WebInspector.ExecutionContextSelector.completionsForTextInCurrentContext(before, prefix, true /* force */).then(innerWordsWithPrefix);
|
| + return WebInspector.JavaScriptAutocomplete.completionsForTextInCurrentContext(before, prefix, true /* force */).then(innerWordsWithPrefix);
|
|
|
| /**
|
| * @param {!Array<string>} words
|
|
|