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

Side by Side Diff: tracing/tracing/ui/extras/about_tracing/profiling_view.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/base64.html"> 8 <link rel="import" href="/tracing/base/base64.html">
9 <link rel="import" href="/tracing/importer/import.html"> 9 <link rel="import" href="/tracing/importer/import.html">
10 <link rel="import" href="/tracing/ui/base/file.html"> 10 <link rel="import" href="/tracing/ui/base/file.html">
11 <link rel="import" href="/tracing/ui/base/hotkey_controller.html"> 11 <link rel="import" href="/tracing/ui/base/hotkey_controller.html">
12 <link rel="import" href="/tracing/ui/base/info_bar_group.html"> 12 <link rel="import" href="/tracing/ui/base/info_bar_group.html">
13 <link rel="import" href="/tracing/ui/base/overlay.html"> 13 <link rel="import" href="/tracing/ui/base/overlay.html">
14 <link rel="import" href="/tracing/ui/base/utils.html"> 14 <link rel="import" href="/tracing/ui/base/utils.html">
15 <link rel="import" 15 <link rel="import"
16 href="/tracing/ui/extras/about_tracing/inspector_tracing_controller_client .html"> 16 href="/tracing/ui/extras/about_tracing/inspector_tracing_controller_client .html">
17 <link rel="import" 17 <link rel="import"
18 href="/tracing/ui/extras/about_tracing/record_controller.html"> 18 href="/tracing/ui/extras/about_tracing/record_controller.html">
19 <link rel="import" 19 <link rel="import"
20 href="/tracing/ui/extras/about_tracing/xhr_based_tracing_controller_client .html"> 20 href="/tracing/ui/extras/about_tracing/xhr_based_tracing_controller_client .html">
21 <link rel="import" href="/tracing/ui/timeline_view.html"> 21 <link rel="import" href="/tracing/ui/timeline_view.html">
22 22
23 <style> 23 <style>
24 x-profiling-view { 24 x-profiling-view {
25 -webkit-flex-direction: column; 25 flex-direction: column;
26 display: -webkit-flex; 26 display: flex;
27 padding: 0; 27 padding: 0;
28 } 28 }
29 29
30 x-profiling-view .controls #save-button { 30 x-profiling-view .controls #save-button {
31 margin-left: 64px !important; 31 margin-left: 64px !important;
32 } 32 }
33 33
34 x-profiling-view > tr-ui-timeline-view { 34 x-profiling-view > tr-ui-timeline-view {
35 -webkit-flex: 1 1 auto; 35 flex: 1 1 auto;
36 min-height: 0; 36 min-height: 0;
37 } 37 }
38 38
39 .report-id-message { 39 .report-id-message {
40 -webkit-user-select: text; 40 -webkit-user-select: text;
41 } 41 }
42 42
43 x-timeline-view-buttons { 43 x-timeline-view-buttons {
44 display: flex; 44 display: flex;
45 align-items: center; 45 align-items: center;
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 }); 362 });
363 return false; 363 return false;
364 } 364 }
365 }; 365 };
366 366
367 return { 367 return {
368 ProfilingView, 368 ProfilingView,
369 }; 369 };
370 }); 370 });
371 </script> 371 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698