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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/AdvancedSearchView.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/sources/AdvancedSearchView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/AdvancedSearchView.js b/third_party/WebKit/Source/devtools/front_end/sources/AdvancedSearchView.js
index 38adfd2c04bd8d9623273f348708e6f972c73e45..1bc8b2fcdcd6b99bc1d9c334a8337e56775e98a5 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/AdvancedSearchView.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/AdvancedSearchView.js
@@ -34,13 +34,13 @@ Sources.AdvancedSearchView = class extends UI.VBox {
this._searchInputClearElement.hidden = true;
this._searchInputClearElement.addEventListener('click', this._onSearchInputClear.bind(this), false);
- this._ignoreCaseLabel = createCheckboxLabel(Common.UIString('Ignore case'));
+ this._ignoreCaseLabel = UI.createCheckboxLabel(Common.UIString('Ignore case'));
this._ignoreCaseLabel.classList.add('search-config-label');
this._searchPanelElement.appendChild(this._ignoreCaseLabel);
this._ignoreCaseCheckbox = this._ignoreCaseLabel.checkboxElement;
this._ignoreCaseCheckbox.classList.add('search-config-checkbox');
- this._regexLabel = createCheckboxLabel(Common.UIString('Regular expression'));
+ this._regexLabel = UI.createCheckboxLabel(Common.UIString('Regular expression'));
this._regexLabel.classList.add('search-config-label');
this._searchPanelElement.appendChild(this._regexLabel);
this._regexCheckbox = this._regexLabel.checkboxElement;

Powered by Google App Engine
This is Rietveld 408576698