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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js

Issue 2666013002: DevTools: render console filter in the main console toolbar. (Closed)
Patch Set: Created 3 years, 11 months 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 788a3aa8fb3ccf5b5432fb165e48d05bed004bb9..e05e06accf441c5ab2aebf78465acb5359ac0ec4 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
@@ -301,11 +301,14 @@ Timeline.TimelinePanel = class extends UI.Panel {
Common.UIString('Memory'), this._showMemorySetting, Common.UIString('Show memory timeline.'));
this._panelToolbar.appendToolbarItem(this._showMemoryToolbarCheckbox);
- // Settings
- this._panelToolbar.appendToolbarItem(this._showSettingsPaneButton);
-
// GC
this._panelToolbar.appendToolbarItem(UI.Toolbar.createActionButtonForId('components.collect-garbage'));
+
+ // Settings
+ this._panelToolbar.appendSpacer();
+ this._panelToolbar.appendText('');
+ this._panelToolbar.appendSeparator();
+ this._panelToolbar.appendToolbarItem(this._showSettingsPaneButton);
}
_createSettingsPane() {

Powered by Google App Engine
This is Rietveld 408576698