| Index: third_party/WebKit/Source/devtools/front_end/timeline/TimelineLandingPage.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineLandingPage.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineLandingPage.js
|
| index 7bb3c028f4d5a988737ddb3d83b80fd98caad97b..af1063769116e34fed7141f233d78bd1a294fbc0 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineLandingPage.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineLandingPage.js
|
| @@ -11,8 +11,8 @@ Timeline.TimelineLandingPage = class extends UI.VBox {
|
| this._tabbedPane = new UI.TabbedPane();
|
| this._tabbedPane.setTabSlider(true);
|
| this._tabbedPane.renderWithNoHeaderBackground();
|
| - this._currentTabSetting = Common.settings.createSetting(
|
| - 'performanceLandingPageTab', Timeline.TimelineLandingPage.PageId.Basic);
|
| + this._currentTabSetting =
|
| + Common.settings.createSetting('performanceLandingPageTab', Timeline.TimelineLandingPage.PageId.Basic);
|
|
|
| var tab = new Timeline.TimelineLandingPage.PerspectiveTabWidget();
|
| tab.appendDescription(Common.UIString(
|
| @@ -120,8 +120,8 @@ Timeline.TimelineLandingPage.PerspectiveTabWidget = class extends UI.VBox {
|
| this._forceEnable = new Map();
|
| this._descriptionDiv = this.contentElement.createChild('div', 'timeline-perspective-description');
|
| this._actionButtonDiv = this.contentElement.createChild('div');
|
| - this._actionButtonDiv.appendChild(createTextButton(Common.UIString('Start profiling'), this._record));
|
| - this._actionButtonDiv.appendChild(createTextButton(Common.UIString('Profile page load'), this._recordPageLoad));
|
| + this._actionButtonDiv.appendChild(UI.createTextButton(Common.UIString('Start profiling'), this._record));
|
| + this._actionButtonDiv.appendChild(UI.createTextButton(Common.UIString('Profile page load'), this._recordPageLoad));
|
| }
|
|
|
| /**
|
|
|