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

Side by Side Diff: chrome/browser/resources/gpu_internals/timeline.css

Issue 7495031: trace_event support for thread names (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Handle thread id repeats, fix locking, clarify name lifetime. Created 9 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 */ 5 */
6 6
7 .timeline-drag-box { 7 .timeline-drag-box {
8 position: fixed; 8 position: fixed;
9 background-color: rgba(0, 0, 255, 0.25); 9 background-color: rgba(0, 0, 255, 0.25);
10 border: 1px solid rgb(0, 0, 96); 10 border: 1px solid rgb(0, 0, 96);
(...skipping 18 matching lines...) Expand all
29 background-color: white; 29 background-color: white;
30 padding-right: 5px; 30 padding-right: 5px;
31 margin: 0; 31 margin: 0;
32 padding: 0; 32 padding: 0;
33 height: 18px; 33 height: 18px;
34 } 34 }
35 35
36 .timeline-slice-track-title { 36 .timeline-slice-track-title {
37 text-align: right; 37 text-align: right;
38 overflow: visible; 38 overflow: visible;
39 width: 150px; 39 width: 300px;
40 padding-right: 5px; 40 padding-right: 5px;
41 } 41 }
42 42
43 .timeline-slice-track-canvas-container { 43 .timeline-slice-track-canvas-container {
44 -webkit-box-flex: 1; 44 -webkit-box-flex: 1;
45 width: 100%; 45 width: 100%;
46 } 46 }
47 47
48 .timeline-slice-track-canvas { 48 .timeline-slice-track-canvas {
49 -webkit-box-flex: 1; 49 -webkit-box-flex: 1;
50 width: 100%; 50 width: 100%;
51 height: 100%; 51 height: 100%;
52 } 52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698