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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.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/timeline/TimelinePanel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
index 8abad64b1d216cc253bec7fd0a210d03a5c50a96..0bbceac23437342f1abb2ee2f1a7b7f68512a54a 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
@@ -1635,7 +1635,7 @@ Timeline.TimelinePanel.StatusPane = class extends UI.VBox {
this._progressLabel = progressLine.createChild('div', 'label');
this._progressBar = progressLine.createChild('div', 'indicator-container').createChild('div', 'indicator');
- this._stopButton = createTextButton(Common.UIString('Stop'), stopCallback);
+ this._stopButton = UI.createTextButton(Common.UIString('Stop'), stopCallback);
this.contentElement.createChild('div', 'stop-button').appendChild(this._stopButton);
}

Powered by Google App Engine
This is Rietveld 408576698