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

Side by Side Diff: appengine/chromium_build/tests/console_test.files/test_parse_master/in_console.html

Issue 2201713002: Update waterfall for new master chromium.memory.full. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Update tests Created 4 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
OLDNEW
1 <script> 1 <script>
2 /** 2 /**
3 * Pseudo namespace for chromium - keep it short because we are in a very 3 * Pseudo namespace for chromium - keep it short because we are in a very
4 * narrow scope for this file. 4 * narrow scope for this file.
5 * @type {Object} 5 * @type {Object}
6 */ 6 */
7 var c = {}; 7 var c = {};
8 8
9 /** 9 /**
10 * Replaces html references with anchor tags to the same. 10 * Replaces html references with anchor tags to the same.
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 </td> 207 </td>
208 <td colspan="2"> 208 <td colspan="2">
209 <script> 209 <script>
210 document.write([ 210 document.write([
211 a("../tryserver.chromium.linux/waterfall", "tryserver.chromium.l inux", ""), 211 a("../tryserver.chromium.linux/waterfall", "tryserver.chromium.l inux", ""),
212 a("../tryserver.chromium.mac/waterfall", "tryserver.chromium.mac ", ""), 212 a("../tryserver.chromium.mac/waterfall", "tryserver.chromium.mac ", ""),
213 a("../tryserver.chromium.win/waterfall", "tryserver.chromium.win ", ""), 213 a("../tryserver.chromium.win/waterfall", "tryserver.chromium.win ", ""),
214 a("../tryserver.blink/waterfall", "tryserver.blink", ""), 214 a("../tryserver.blink/waterfall", "tryserver.blink", ""),
215 aView("../chromium.fyi", "", "chromium.fyi"), 215 aView("../chromium.fyi", "", "chromium.fyi"),
216 aView("../chromium.memory", "", "chromium.memory"), 216 aView("../chromium.memory", "", "chromium.memory"),
217 aView("../chromium.memory.fyi", "", "chromium.memory.fyi"), 217 aView("../chromium.memory.full", "", "chromium.memory.full"),
218 aView("../chromium.chromiumos", "", "chromium.chromiumos"), 218 aView("../chromium.chromiumos", "", "chromium.chromiumos"),
219 aView("../chromiumos", "", "chromiumos"), 219 aView("../chromiumos", "", "chromiumos"),
220 aView("../client.nacl", "", "client.nacl"), 220 aView("../client.nacl", "", "client.nacl"),
221 aView("../chromium.webkit", "", "chromium.webkit")].join(' | ')) ; 221 aView("../chromium.webkit", "", "chromium.webkit")].join(' | ')) ;
222 </script> 222 </script>
223 </td> 223 </td>
224 </tr> 224 </tr>
225 <tr> 225 <tr>
226 <td style="text-align: right;"> 226 <td style="text-align: right;">
227 <b>Navigate:</b> 227 <b>Navigate:</b>
(...skipping 17 matching lines...) Expand all
245 </td> 245 </td>
246 <td width="70%"> 246 <td width="70%">
247 <table width="100%"> 247 <table width="100%">
248 <script language="javascript"> 248 <script language="javascript">
249 c.chromium = ''; 249 c.chromium = '';
250 c.win = ''; 250 c.win = '';
251 c.mac = ''; 251 c.mac = '';
252 c.linux = ''; 252 c.linux = '';
253 c.chromium_chromiumos = ''; 253 c.chromium_chromiumos = '';
254 c.memory = ''; 254 c.memory = '';
255 c.memory_fyi = ''; 255 c.memory.full = '';
256 c.perf = ''; 256 c.perf = '';
257 c.cros = ''; 257 c.cros = '';
258 c.chrome = ''; 258 c.chrome = '';
259 c.lkgr = ''; 259 c.lkgr = '';
260 c.gpu = ''; 260 c.gpu = '';
261 c.gpu_fyi = ''; 261 c.gpu_fyi = '';
262 262
263 c.status = '../chromium'; 263 c.status = '../chromium';
264 c.status_win = '../chromium.win'; 264 c.status_win = '../chromium.win';
265 c.status_mac = '../chromium.mac'; 265 c.status_mac = '../chromium.mac';
266 c.status_linux = '../chromium.linux'; 266 c.status_linux = '../chromium.linux';
267 c.status_cros = '../chromium.chromiumos'; 267 c.status_cros = '../chromium.chromiumos';
268 c.status_memory = '../chromium.memory'; 268 c.status_memory = '../chromium.memory';
269 c.status_memory_fyi = '../chromium.memory.fyi'; 269 c.status_memory.full = '../chromium.memory.full';
270 c.status_chrome = '../chromium.chrome'; 270 c.status_chrome = '../chromium.chrome';
271 c.status_perf = '../chromium.perf'; 271 c.status_perf = '../chromium.perf';
272 c.status_lkgr = '../chromium.lkgr'; 272 c.status_lkgr = '../chromium.lkgr';
273 c.status_gpu = '../chromium.gpu'; 273 c.status_gpu = '../chromium.gpu';
274 c.status_gpu_fyi = '../chromium.gpu.fyi'; 274 c.status_gpu_fyi = '../chromium.gpu.fyi';
275 275
276 /** 276 /**
277 * Builds a reference for the iframe with boxes. 277 * Builds a reference for the iframe with boxes.
278 * @param {String} x the name of the waterfall. 278 * @param {String} x the name of the waterfall.
279 * @param {?Array.<String>} opt_builders an optional array of 279 * @param {?Array.<String>} opt_builders an optional array of
(...skipping 13 matching lines...) Expand all
293 } 293 }
294 } 294 }
295 return 'https://chromium-build.appspot.com/p/' + x + 295 return 'https://chromium-build.appspot.com/p/' + x +
296 '/horizontal_one_box_per_builder' + builders; 296 '/horizontal_one_box_per_builder' + builders;
297 } 297 }
298 c.bar = BarUrl('chromium') 298 c.bar = BarUrl('chromium')
299 c.bar_win = BarUrl('chromium.win'); 299 c.bar_win = BarUrl('chromium.win');
300 c.bar_mac = BarUrl('chromium.mac'); 300 c.bar_mac = BarUrl('chromium.mac');
301 c.bar_linux = BarUrl('chromium.linux'); 301 c.bar_linux = BarUrl('chromium.linux');
302 c.bar_memory = BarUrl('chromium.memory'); 302 c.bar_memory = BarUrl('chromium.memory');
303 c.bar_memory_fyi = BarUrl('chromium.memory.fyi'); 303 c.bar_memory.full = BarUrl('chromium.memory.full');
304 c.bar_perf = BarUrl('chromium.perf'); 304 c.bar_perf = BarUrl('chromium.perf');
305 c.bar_chrome = BarUrl('chromium.chrome'); 305 c.bar_chrome = BarUrl('chromium.chrome');
306 c.bar_lkgr = BarUrl('chromium.lkgr'); 306 c.bar_lkgr = BarUrl('chromium.lkgr');
307 c.bar_cros = BarUrl('chromium.chromiumos'); 307 c.bar_cros = BarUrl('chromium.chromiumos');
308 c.bar_gpu = BarUrl('chromium.gpu'); 308 c.bar_gpu = BarUrl('chromium.gpu');
309 c.bar_gpu_closers = BarUrl('chromium.gpu', 309 c.bar_gpu_closers = BarUrl('chromium.gpu',
310 // This list must be kept in sync with the bots watched in 310 // This list must be kept in sync with the bots watched in
311 // scripts/slave/gatekeeper.json. 311 // scripts/slave/gatekeeper.json.
312 [ 'GPU Win Builder', 312 [ 'GPU Win Builder',
313 'Win7 Release (NVIDIA)', 313 'Win7 Release (NVIDIA)',
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 HTMLBaseBar(c.status_gpu, c.bar_gpu_closers, c.gpu, 458 HTMLBaseBar(c.status_gpu, c.bar_gpu_closers, c.gpu,
459 'GPU', 'colspan=3'))))))); 459 'GPU', 'colspan=3')))))));
460 460
461 document.write(tr( 461 document.write(tr(
462 HTMLBaseBar(c.status_perf, c.bar_perf, c.perf, 462 HTMLBaseBar(c.status_perf, c.bar_perf, c.perf,
463 'Perf', 'width="75%"', '') + 463 'Perf', 'width="75%"', '') +
464 HTMLBaseBar(c.status_lkgr, c.bar_lkgr, c.lkgr, 464 HTMLBaseBar(c.status_lkgr, c.bar_lkgr, c.lkgr,
465 'LKGR', 'width="25%"', 'id="LKGRLink"'))); 465 'LKGR', 'width="25%"', 'id="LKGRLink"')));
466 466
467 document.write(tr( 467 document.write(tr(
468 HTMLBaseBar(c.status_memory_fyi, c.bar_memory_fyi, c.memory_fyi, 468 HTMLBaseBar(c.status_memory.full, c.bar_memory.full, c.memory.fu ll,
469 'Memory<br>FYI', 'width="100%" colspan=6', ''))); 469 'Memory<br>FYI', 'width="100%" colspan=6', '')));
470 470
471 document.write(tr( 471 document.write(tr(
472 HTMLBaseBar(c.status_gpu, c.bar_gpu, c.gpu, 472 HTMLBaseBar(c.status_gpu, c.bar_gpu, c.gpu,
473 'GPU', 'width="75%"', '') + 473 'GPU', 'width="75%"', '') +
474 HTMLBaseBar(c.status_gpu_fyi, c.bar_gpu_fyi, c.gpu_fyi, 474 HTMLBaseBar(c.status_gpu_fyi, c.bar_gpu_fyi, c.gpu_fyi,
475 'GPU FYI', 'width="25%"', ''))); 475 'GPU FYI', 'width="25%"', '')));
476 476
477 setTimeout('DisplayLKGR()', 100); 477 setTimeout('DisplayLKGR()', 100);
478 </script> 478 </script>
(...skipping 3118 matching lines...) Expand 10 before | Expand all | Expand 10 after
3597 </script> 3597 </script>
3598 3598
3599 </div><div class="footer" style="clear:both"> 3599 </div><div class="footer" style="clear:both">
3600 <hr/> 3600 <hr/>
3601 [ <a class='collapse' href='#' OnClick='collapse(); return false;'>collapse</a > 3601 [ <a class='collapse' href='#' OnClick='collapse(); return false;'>collapse</a >
3602 <a class='uncollapse' href='#' OnClick='uncollapse(); return false;'>un-collap se</a> 3602 <a class='uncollapse' href='#' OnClick='uncollapse(); return false;'>un-collap se</a>
3603 <a class='merge' href="#" OnClick="merge(); return false;">merge</a> 3603 <a class='merge' href="#" OnClick="merge(); return false;">merge</a>
3604 <a class='unmerge' style='display: none' href="#" OnClick="unmerge(); return f alse;">un-merge</a> ] 3604 <a class='unmerge' style='display: none' href="#" OnClick="unmerge(); return f alse;">un-merge</a> ]
3605 <p>Debug info: {'revision_final': 25, 'builds_scanned': 640, 'source_all': 25, 'source_len': 25, 'last_revision': u'97c5abba36f5ce473cd996fab74fbf5aa9bb5464', 'from_cache': 257, 'added_blocks': 0, 'load_time': 0.14508700370788574}</p> 3605 <p>Debug info: {'revision_final': 25, 'builds_scanned': 640, 'source_all': 25, 'source_len': 25, 'last_revision': u'97c5abba36f5ce473cd996fab74fbf5aa9bb5464', 'from_cache': 257, 'added_blocks': 0, 'load_time': 0.14508700370788574}</p>
3606 </div> 3606 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698