Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js

Issue 2468493004: DevTools: Consolidate completion code into JavaScriptAutocomplete.js (Closed)
Patch Set: merge Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js b/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
index bd7efffe2ffc5c872ec0f4ba5927c3e06d0b0319..7a96c8bafe88f24a7e7e3da24e13f365b7516fca 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
+++ b/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
@@ -1036,7 +1036,7 @@ WebInspector.ArrayGroupingTreeElement.prototype = {
WebInspector.ObjectPropertyPrompt = function()
{
WebInspector.TextPrompt.call(this);
- this.initialize(WebInspector.ExecutionContextSelector.completionsForTextPromptInCurrentContext);
+ this.initialize(WebInspector.JavaScriptAutocomplete.completionsForTextPromptInCurrentContext);
this.setSuggestBoxEnabled(true);
};

Powered by Google App Engine
This is Rietveld 408576698