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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/HistoryInput.js

Issue 2604883002: DevTools: namespace globals (Closed)
Patch Set: address CL feedback Created 4 years 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/ui/HistoryInput.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/HistoryInput.js b/third_party/WebKit/Source/devtools/front_end/ui/HistoryInput.js
index 88a4495cfbe198fdc49fadbfe2424a3c854d0df4..2abd56eb5a28c75326c8c096f677c1372771e9e3 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/HistoryInput.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/HistoryInput.js
@@ -14,7 +14,7 @@ UI.HistoryInput = class extends HTMLInputElement {
*/
static create() {
if (!UI.HistoryInput._constructor)
- UI.HistoryInput._constructor = registerCustomElement('input', 'history-input', UI.HistoryInput.prototype);
+ UI.HistoryInput._constructor = UI.registerCustomElement('input', 'history-input', UI.HistoryInput.prototype);
return /** @type {!UI.HistoryInput} */ (new UI.HistoryInput._constructor());
}
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/FilterBar.js ('k') | third_party/WebKit/Source/devtools/front_end/ui/Icon.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698