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

Side by Side Diff: tracing/tracing/ui/tracks/model_track.html

Issue 3002533002: Switch tracing to new flexbox. (Closed)
Patch Set: Created 3 years, 4 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright (c) 2013 The Chromium Authors. All rights reserved. 3 Copyright (c) 2013 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/color_scheme.html"> 8 <link rel="import" href="/tracing/base/color_scheme.html">
9 <link rel="import" href="/tracing/ui/base/draw_helpers.html"> 9 <link rel="import" href="/tracing/ui/base/draw_helpers.html">
10 <link rel="import" href="/tracing/ui/base/ui.html"> 10 <link rel="import" href="/tracing/ui/base/ui.html">
11 <link rel="import" href="/tracing/ui/tracks/alert_track.html"> 11 <link rel="import" href="/tracing/ui/tracks/alert_track.html">
12 <link rel="import" href="/tracing/ui/tracks/container_track.html"> 12 <link rel="import" href="/tracing/ui/tracks/container_track.html">
13 <link rel="import" href="/tracing/ui/tracks/cpu_usage_track.html"> 13 <link rel="import" href="/tracing/ui/tracks/cpu_usage_track.html">
14 <link rel="import" href="/tracing/ui/tracks/device_track.html"> 14 <link rel="import" href="/tracing/ui/tracks/device_track.html">
15 <link rel="import" href="/tracing/ui/tracks/global_memory_dump_track.html"> 15 <link rel="import" href="/tracing/ui/tracks/global_memory_dump_track.html">
16 <link rel="import" href="/tracing/ui/tracks/interaction_track.html"> 16 <link rel="import" href="/tracing/ui/tracks/interaction_track.html">
17 <link rel="import" href="/tracing/ui/tracks/kernel_track.html"> 17 <link rel="import" href="/tracing/ui/tracks/kernel_track.html">
18 <link rel="import" href="/tracing/ui/tracks/memory_track.html"> 18 <link rel="import" href="/tracing/ui/tracks/memory_track.html">
19 <link rel="import" href="/tracing/ui/tracks/process_track.html"> 19 <link rel="import" href="/tracing/ui/tracks/process_track.html">
20 20
21 <style> 21 <style>
22 .model-track { 22 .model-track {
23 -webkit-box-flex: 1; 23 flex-grow: 1;
24 } 24 }
25 </style> 25 </style>
26 26
27 <script> 27 <script>
28 'use strict'; 28 'use strict';
29 29
30 tr.exportTo('tr.ui.tracks', function() { 30 tr.exportTo('tr.ui.tracks', function() {
31 const SelectionState = tr.model.SelectionState; 31 const SelectionState = tr.model.SelectionState;
32 const ColorScheme = tr.b.ColorScheme; 32 const ColorScheme = tr.b.ColorScheme;
33 const EventPresenter = tr.ui.b.EventPresenter; 33 const EventPresenter = tr.ui.b.EventPresenter;
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 tr.ui.tracks.ContainerTrack.prototype.addClosestEventToSelection. 522 tr.ui.tracks.ContainerTrack.prototype.addClosestEventToSelection.
523 apply(this, arguments); 523 apply(this, arguments);
524 } 524 }
525 }; 525 };
526 526
527 return { 527 return {
528 ModelTrack, 528 ModelTrack,
529 }; 529 };
530 }); 530 });
531 </script> 531 </script>
OLDNEW
« no previous file with comments | « tracing/tracing/ui/tracks/drawing_container.css ('k') | tracing/tracing/ui/tracks/process_track_base.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698