| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 5 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 6 <script src="chrome://resources/js/load_time_data.js"></script> | 6 <script src="chrome://resources/js/load_time_data.js"></script> |
| 7 <script src="chrome://resources/js/util.js"></script> | 7 <script src="chrome://resources/js/util.js"></script> |
| 8 <script src="chrome://profiler/strings.js"></script> | 8 <script src="chrome://profiler/strings.js"></script> |
| 9 <script src="chrome://profiler/profiler.js"></script> | 9 <script src="chrome://profiler/profiler.js"></script> |
| 10 | 10 |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 margin-top: 1ex; | 99 margin-top: 1ex; |
| 100 } | 100 } |
| 101 | 101 |
| 102 .errormsg { | 102 .errormsg { |
| 103 color: red; | 103 color: red; |
| 104 } | 104 } |
| 105 | 105 |
| 106 </style> | 106 </style> |
| 107 </head> | 107 </head> |
| 108 <body> | 108 <body> |
| 109 <b>Save:</b><button id=save-snapshots-button>Save</button> | |
| 110 <b>Restore:</b> <input type=file id=snapshot-file-loader> | |
| 111 <span id=file-load-error hidden class=errormsg></span> | |
| 112 | |
| 113 <hr> | |
| 114 | |
| 115 <table width=100%> | 109 <table width=100%> |
| 116 <tr> | 110 <tr> |
| 117 <td> | 111 <td> |
| 112 <b>Save:</b><button id=save-snapshots-button>Save</button> |
| 113 <b>Restore:</b> <input type=file id=snapshot-file-loader> |
| 114 <span id=file-load-error hidden class=errormsg></span> |
| 115 </td> |
| 116 <td align=right> |
| 117 <a target="_blank" |
| 118 href="https://sites.google.com/a/chromium.org/dev/developers/threaded-
task-tracking"> |
| 119 Profiler Documentation |
| 120 </a> |
| 121 </td> |
| 122 </tr> |
| 123 </table> |
| 124 <hr> |
| 125 <table width=100%> |
| 126 <tr> |
| 127 <td> |
| 118 <b>Group by: </b> <span id=group-by-container></span> | 128 <b>Group by: </b> <span id=group-by-container></span> |
| 119 <b>Sort by: </b> <span id=sort-by-container></span> | 129 <b>Sort by: </b> <span id=sort-by-container></span> |
| 120 </td> | 130 </td> |
| 121 <td align=right> | 131 <td align=right> |
| 122 <span id=snapshots-link class=pseudo-link>[snapshots]</span> | 132 <span id=snapshots-link class=pseudo-link>[snapshots]</span> |
| 123 <span id=edit-columns-link class=pseudo-link>[columns]</span> | 133 <span id=edit-columns-link class=pseudo-link>[columns]</span> |
| 124 <input type='search' incremental id='filter-search'> | 134 <input type='search' incremental id='filter-search'> |
| 125 </td> | 135 </td> |
| 126 </tr> | 136 </tr> |
| 127 <tr id=edit-columns-row style='display:none'> | 137 <tr id=edit-columns-row style='display:none'> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 145 </tr> | 155 </tr> |
| 146 </table> | 156 </table> |
| 147 | 157 |
| 148 <hr> | 158 <hr> |
| 149 | 159 |
| 150 <div id='results-div'></div> | 160 <div id='results-div'></div> |
| 151 | 161 |
| 152 <a style="display: none" id="download-anchor" download="profile.json"></a> | 162 <a style="display: none" id="download-anchor" download="profile.json"></a> |
| 153 </body> | 163 </body> |
| 154 </html> | 164 </html> |
| OLD | NEW |