| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2016 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <link rel="import" href="/tracing/base/iteration_helpers.html"> | |
| 9 <link rel="import" href="/tracing/base/settings.html"> | 8 <link rel="import" href="/tracing/base/settings.html"> |
| 9 <link rel="import" href="/tracing/base/utils.html"> |
| 10 <link rel="import" href="/tracing/ui/base/dropdown.html"> | 10 <link rel="import" href="/tracing/ui/base/dropdown.html"> |
| 11 | 11 |
| 12 <dom-module id='tr-ui-b-grouping-table-groupby-picker'> | 12 <dom-module id='tr-ui-b-grouping-table-groupby-picker'> |
| 13 <template> | 13 <template> |
| 14 <style> | 14 <style> |
| 15 #container { | 15 #container { |
| 16 display: flex; | 16 display: flex; |
| 17 } | 17 } |
| 18 #container *:not(:first-child) { | 18 #container *:not(:first-child) { |
| 19 padding-left: 3px; | 19 padding-left: 3px; |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 onEnableChanged_(groupEl) { | 249 onEnableChanged_(groupEl) { |
| 250 this.updateFirstLast_(); | 250 this.updateFirstLast_(); |
| 251 this.onCurrentGroupsChanged_(); | 251 this.onCurrentGroupsChanged_(); |
| 252 } | 252 } |
| 253 }); | 253 }); |
| 254 | 254 |
| 255 return { | 255 return { |
| 256 }; | 256 }; |
| 257 }); | 257 }); |
| 258 </script> | 258 </script> |
| OLD | NEW |