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

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

Issue 2471243002: 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 ee8fc85f81e9d1baffbe29153aed5e638aba6796..cecb7db2d331d968de2f652683b0745146a325fb 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
+++ b/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
@@ -1248,7 +1248,7 @@ WebInspector.ArrayGroupingTreeElement._getOwnPropertyNamesThreshold = 500000;
WebInspector.ObjectPropertyPrompt = class extends WebInspector.TextPrompt {
constructor() {
super();
- this.initialize(WebInspector.ExecutionContextSelector.completionsForTextPromptInCurrentContext);
+ this.initialize(WebInspector.JavaScriptAutocomplete.completionsForTextPromptInCurrentContext);
this.setSuggestBoxEnabled(true);
}
};

Powered by Google App Engine
This is Rietveld 408576698