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

Side by Side Diff: chrome/browser/resources/net_internals/capture_view.html

Issue 9521006: Cleanup some classnames to match style. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add a comment Created 8 years, 9 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 <div id=capture-view-tab-content> 1 <div id=capture-view-tab-content class=content-box>
2 <h2>Capture options</h2> 2 <h2>Capture options</h2>
3 <input id=capture-view-byte-logging-checkbox type=checkbox /> 3 <input id=capture-view-byte-logging-checkbox type=checkbox />
4 <label for='capture-view-byte-logging-checkbox'> 4 <label for='capture-view-byte-logging-checkbox'>
5 Include the actual bytes sent/received. 5 Include the actual bytes sent/received.
6 <i>(This will result in huge log files, and can expose sensitive data)</i> 6 <i>(This will result in huge log files, and can expose sensitive data)</i>
7 </label> 7 </label>
8 8
9 <ul> 9 <ul>
10 <li> 10 <li>
11 <b>TIP</b>: <a href="#" id=capture-view-tip-anchor>logging from the command line</a>. 11 <b>TIP</b>: <a href="#" id=capture-view-tip-anchor>logging from the command line</a>.
12 12
13 <div style="display:none; margin-top: 10px" id=capture-view-tip-div> 13 <div style="display:none; margin-top: 10px" id=capture-view-tip-div>
14 Another way to capture network events is by using the command line flag: 14 Another way to capture network events is by using the command line flag:
15 <blockquote> 15 <blockquote>
16 --log-net-log=<i>FILENAME</i> [ --net-log-level=<i>NUMBER</i> ] 16 --log-net-log=<i>FILENAME</i> [ --net-log-level=<i>NUMBER</i> ]
17 </blockquote> 17 </blockquote>
18 This will stream the network events directly to a file of your choosing. I f you additionally want it to log the network bytes, then pass --net-log-level=0 . 18 This will stream the network events directly to a file of your choosing. I f you additionally want it to log the network bytes, then pass --net-log-level=0 .
19 </div> 19 </div>
20 20
21 </li> 21 </li>
22 </ul> 22 </ul>
23 23
24 </div> 24 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698