Chromium Code Reviews| 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 737026e5d6a8af39d95e25103cc29556fb0e94dc..53364ce9dfa68b62075846bfe7420a0119d5386f 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js |
| @@ -380,11 +380,9 @@ WebInspector.TimelinePanel.prototype = { |
| this._captureNetworkSetting.addChangeListener(this._onNetworkChanged, this); |
| if (!Runtime.experiments.isEnabled("timelineRecordingPerspectives") || perspectiveSetting.get() === WebInspector.TimelinePanel.Perspectives.Custom) { |
| - if (Runtime.experiments.isEnabled("networkRequestsOnTimeline")) { |
| - this._panelToolbar.appendToolbarItem(this._createSettingCheckbox(WebInspector.UIString("Network"), |
| - this._captureNetworkSetting, |
| - WebInspector.UIString("Capture network requests information"))); |
| - } |
| + this._panelToolbar.appendToolbarItem(this._createSettingCheckbox(WebInspector.UIString("Network"), |
| + this._captureNetworkSetting, |
|
caseq
2016/05/02 17:32:43
style: let's use indent of 4 here.
|
| + WebInspector.UIString("Capture network requests information"))); |
|
caseq
2016/05/02 17:32:43
s/Capture/Show/?
|
| this._panelToolbar.appendToolbarItem(this._createSettingCheckbox(WebInspector.UIString("JS Profile"), |
| this._captureJSProfileSetting, |
| WebInspector.UIString("Capture JavaScript stacks with sampling profiler. (Has performance overhead)"))); |