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

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

Issue 671253002: Added the list of active field groups to NetLog dump (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Used space as a delimiter Created 6 years, 2 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
« no previous file with comments | « no previous file | net/base/net_log_logger.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <style> 1 <style>
2 #import-view-command-line, 2 #import-view-command-line,
3 #import-view-user-comments { 3 #import-view-user-comments {
4 /* Wrap long lines inside of PREs */ 4 /* Wrap long lines inside of PREs */
5 white-space: pre-wrap; 5 white-space: pre-wrap;
6 } 6 }
7 7
8 #import-view-load-status-text { 8 #import-view-load-status-text {
9 /* Wrap long lines inside of PREs */ 9 /* Wrap long lines inside of PREs */
10 white-space: pre-wrap; 10 white-space: pre-wrap;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 </tr> 57 </tr>
58 <tr> 58 <tr>
59 <th>OS type</th> 59 <th>OS type</th>
60 <td jscontent="constants.clientInfo.os_type"></td> 60 <td jscontent="constants.clientInfo.os_type"></td>
61 </tr> 61 </tr>
62 <tr> 62 <tr>
63 <th>Command line</th> 63 <th>Command line</th>
64 <td><pre jscontent="constants.clientInfo.command_line"></pre></td> 64 <td><pre jscontent="constants.clientInfo.command_line"></pre></td>
65 </tr> 65 </tr>
66 <tr> 66 <tr>
67 <th>Active Field Trial Groups</th>
68 <td>
69 <span jsselect="constants.activeFieldTrialGroups" jscontent="$this + ' ' "></span>
70 </td>
71 </tr>
72 <tr>
67 <th>User comments</th> 73 <th>User comments</th>
68 <td> 74 <td>
69 <pre id=import-view-user-comments jscontent="userComments" 75 <pre id=import-view-user-comments jscontent="userComments"
70 jsdisplay="typeof userComments != 'undefined'"></pre> 76 jsdisplay="typeof userComments != 'undefined'"></pre>
71 </td> 77 </td>
72 </tr> 78 </tr>
73 </table> 79 </table>
74 </div> 80 </div>
75 </div> 81 </div>
OLDNEW
« no previous file with comments | « no previous file | net/base/net_log_logger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698