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

Side by Side Diff: chrome/browser/resources/net_internals/main.css

Issue 3119027: Adds HostResolveImpl Requests and Jobs to log. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 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) 2010 The Chromium Authors. All rights reserved. 2 Copyright (c) 2010 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 * { 7 * {
8 -webkit-box-sizing: border-box; 8 -webkit-box-sizing: border-box;
9 -moz-box-sizing: border-box; 9 -moz-box-sizing: border-box;
10 } 10 }
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 80
81 #requestsListTableBody .selected, 81 #requestsListTableBody .selected,
82 #requestsListTableBody .mouseover .selected { 82 #requestsListTableBody .mouseover .selected {
83 background: #C3D9FF; 83 background: #C3D9FF;
84 } 84 }
85 85
86 #requestsListTableBody .source_CONNECT_JOB { 86 #requestsListTableBody .source_CONNECT_JOB {
87 color: blue; 87 color: blue;
88 } 88 }
89 89
90 #requestsListTableBody .source_HOST_RESOLVER_IMPL_JOB,
91 #requestsListTableBody .source_HOST_RESOLVER_IMPL_REQUEST {
92 color: #308080;
93 }
94
90 #requestsListTableBody .source_SOCKET { 95 #requestsListTableBody .source_SOCKET {
91 color: purple; 96 color: purple;
92 } 97 }
93 98
94 #requestsListTableBody .source_INIT_PROXY_RESOLVER { 99 #requestsListTableBody .source_INIT_PROXY_RESOLVER {
95 color: green; 100 color: green;
96 } 101 }
97 102
98 #requestsListTableBody .source_NONE { 103 #requestsListTableBody .source_NONE {
99 color: red; 104 color: red;
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 table.styledTable, 221 table.styledTable,
217 .styledTable th, 222 .styledTable th,
218 .styledTable td { 223 .styledTable td {
219 border: 1px solid #777; 224 border: 1px solid #777;
220 } 225 }
221 226
222 .styledTable th { 227 .styledTable th {
223 background: rgb(224,236,255); 228 background: rgb(224,236,255);
224 } 229 }
225 230
OLDNEW
« no previous file with comments | « chrome/browser/net/passive_log_collector.cc ('k') | chrome/browser/resources/net_internals/sourceentry.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698