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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/SearchableView.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/SearchableView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js b/third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js
index 9edae2f18d51da3fcae7870f814f31b83d3bd113..4922e236e813917b7b52700fdf96274d24b817ff 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js
@@ -133,7 +133,7 @@ UI.SearchableView = class extends UI.VBox {
// Column 4
this._replaceElement = this._firstRowElement.createChild('td').createChild('span');
- this._replaceLabelElement = createCheckboxLabel(Common.UIString('Replace'));
+ this._replaceLabelElement = UI.createCheckboxLabel(Common.UIString('Replace'));
this._replaceCheckboxElement = this._replaceLabelElement.checkboxElement;
this._uniqueId = ++UI.SearchableView._lastUniqueId;
var replaceCheckboxId = 'search-replace-trigger' + this._uniqueId;

Powered by Google App Engine
This is Rietveld 408576698