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

Side by Side Diff: tools/callstats.html

Issue 2797253009: Fix static initializer in ic.cc (Closed)
Patch Set: Created 3 years, 8 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 | « src/ic/ic.cc ('k') | tools/ic-explorer.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <!-- 2 <!--
3 Copyright 2016 the V8 project authors. All rights reserved. Use of this source 3 Copyright 2016 the V8 project authors. All rights reserved. Use of this source
4 code is governed by a BSD-style license that can be found in the LICENSE file. 4 code is governed by a BSD-style license that can be found in the LICENSE file.
5 --> 5 -->
6 6
7 <head> 7 <head>
8 <meta charset="UTF-8"> 8 <meta charset="UTF-8">
9 <style> 9 <style>
10 body { 10 body {
(...skipping 1075 matching lines...) Expand 10 before | Expand all | Expand 10 after
1086 1086
1087 function handleAppendFile() { 1087 function handleAppendFile() {
1088 var files = document.getElementById("appendInput").files; 1088 var files = document.getElementById("appendInput").files;
1089 loadFiles(files, true); 1089 loadFiles(files, true);
1090 } 1090 }
1091 1091
1092 function handleLoadFile() { 1092 function handleLoadFile() {
1093 var files = document.getElementById("uploadInput").files; 1093 var files = document.getElementById("uploadInput").files;
1094 loadFiles(files, false) 1094 loadFiles(files, false)
1095 } 1095 }
1096 1096
1097 function loadFiles(files, append) { 1097 function loadFiles(files, append) {
1098 var file = files[0]; 1098 var file = files[0];
1099 var reader = new FileReader(); 1099 var reader = new FileReader();
1100 1100
1101 reader.onload = function(evt) { 1101 reader.onload = function(evt) {
1102 handleLoadText(this.result, append); 1102 handleLoadText(this.result, append);
1103 } 1103 }
1104 reader.readAsText(file); 1104 reader.readAsText(file);
1105 } 1105 }
1106 1106
(...skipping 955 matching lines...) Expand 10 before | Expand all | Expand 10 after
2062 </tr> 2062 </tr>
2063 <tr> 2063 <tr>
2064 <td>Overall Impact:</td> 2064 <td>Overall Impact:</td>
2065 <td class="timeImpact"></td><td>±</td><td class="timePercentImpact"></td > 2065 <td class="timeImpact"></td><td>±</td><td class="timePercentImpact"></td >
2066 <td class="compare timeImpact"></td><td class="compare"> ± </td><td clas s="compare timePercentImpact"></td> 2066 <td class="compare timeImpact"></td><td class="compare"> ± </td><td clas s="compare timePercentImpact"></td>
2067 </tr> 2067 </tr>
2068 </table> 2068 </table>
2069 </div> 2069 </div>
2070 </body> 2070 </body>
2071 </html> 2071 </html>
OLDNEW
« no previous file with comments | « src/ic/ic.cc ('k') | tools/ic-explorer.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698