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

Side by Side Diff: tests/test_console_merger/chromium_memory_console_input.html

Issue 11535002: chromium-build app now renders console from stored rows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/chromium-build
Patch Set: Add test_parse_master_utf8 Created 7 years, 11 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
(Empty)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml">
4 <head>
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6 <meta http-equiv="refresh" content="9999999999"/>
7 <title>BuildBot: Chromium Memory</title>
8 <link rel="stylesheet" href="default.css" type="text/css" />
9 <link rel="alternate" type="application/rss+xml" title="RSS" href="rss">
10
11 <script type='text/javascript'>
12 // <![CDATA[
13 //
14
15 //
16 // Functions used to display the build status bubble on box click.
17 //
18
19 // show the build status box. This is called when the user clicks on a block.
20 function showBuildBox(url, event) {
21 // Find the current curson position.
22 var cursorPosTop = (window.event ? window.event.clientY : event.pageY)
23 var cursorPosLeft = (window.event ? window.event.clientX : event.pageX)
24
25 // Offset the position by 5, to make the window appears under the cursor.
26 cursorPosTop = cursorPosTop + document.body.scrollTop -5 ;
27 cursorPosLeft = cursorPosLeft + document.body.scrollLeft - 5;
28
29 // Move the div (hidden) under the cursor.
30 var divBox = document.getElementById('divBox');
31 divBox.style.top = parseInt(cursorPosTop) + 'px';
32 divBox.style.left = parseInt(cursorPosLeft) + 'px';
33
34 // Reload the hidden frame with the build page we want to show.
35 // The onload even on this frame will update the div and make it visible.
36 document.getElementById("frameBox").src = url
37
38 // We don't want to reload the page.
39 return false;
40 }
41
42 // OnLoad handler for the iframe containing the build to show.
43 function updateDiv(event) {
44 // Get the frame innerHTML.
45 var iframeContent = document.getElementById("frameBox").contentWindow.docume nt.body.innerHTML;
46
47 // If there is any content, update the div, and make it visible.
48 if (iframeContent) {
49 var divBox = document.getElementById('divBox');
50 divBox.innerHTML = iframeContent ;
51 divBox.style.display = "block";
52 }
53 }
54
55 // Util functions to know if an element is contained inside another element.
56 // We use this to know when we mouse out our build status div.
57 function containsDOM (container, containee) {
58 var isParent = false;
59 do {
60 if ((isParent = container == containee))
61 break;
62 containee = containee.parentNode;
63 } while (containee != null);
64
65 return isParent;
66 }
67
68 // OnMouseOut handler. Returns true if the mouse moved out of the element.
69 // It is false if the mouse is still in the element, but in a blank part of it,
70 // like in an empty table cell.
71 function checkMouseLeave(element, event) {
72 if (element.contains && event.toElement) {
73 return !element.contains(event.toElement);
74 }
75 else if (event.relatedTarget) {
76 return !containsDOM(element, event.relatedTarget);
77 }
78 }
79
80 // Creates a new cookie.
81 function createCookie(name, value, day) {
82 var date = new Date();
83 date.setTime(date.getTime() + (day * 24 * 60 * 60 * 1000));
84 var expires = "; expires=" + date.toGMTString();
85 document.cookie = name + "=" + value+expires + "; path=/";
86 }
87
88 // Returns the vaue of a cookie, or null if it does not exist.
89 function readCookie(name) {
90 var begin = name + "=";
91 var data = document.cookie.split(';');
92 for(var i = 0; i < data.length; i++) {
93 var cookie = data[i];
94 while (cookie.charAt(0) == ' ')
95 cookie = cookie.substring(1, cookie.length);
96 if (cookie.indexOf(begin) == 0)
97 return cookie.substring(begin.length, cookie.length);
98 }
99
100 return null;
101 }
102
103 // Deletes a cookie.
104 function eraseCookie(name) {
105 createCookie(name, "", -1);
106 }
107
108 // Hides all "details" and "comments" section.
109 function collapse() {
110 // Hide all Comments sections.
111 var comments = document.querySelectorAll('.DevComment');
112 for(var i = 0; i < comments.length; i++) {
113 comments[i].style.display = "none";
114 }
115
116 // Hide all details sections.
117 var details = document.querySelectorAll('.DevDetails');
118 for(var i = 0; i < details.length; i++) {
119 details[i].style.display = "none";
120 }
121
122 // Fix the rounding on the Revision box. (Lower right corner must be round)
123 var revisions = document.querySelectorAll('.DevRev');
124 for(var i = 0; i < revisions.length; i++) {
125 revisions[i].className = revisions[i].className + ' DevRevCollapse';
126 }
127
128 // Fix the rounding on the last category box. (Lower left corner must be rou nd)
129 var status = document.querySelectorAll('.last');
130 for(var i = 0; i < status.length; i++) {
131 status[i].className = status[i].className + ' DevStatusCollapse';
132 }
133
134 // Create a cookie to remember that we want the view to be collapsed.
135 createCookie('collapsed', 'true', 30)
136
137 // Hide the collapse and the unmerge buttons.
138 document.querySelectorAll('.collapse')[0].style.display = 'none'
139 document.querySelectorAll('.unmerge')[0].style.display = 'none'
140
141 // Activate the merge and expand buttons.
142 document.querySelectorAll('.uncollapse')[0].style.display = 'inline'
143 document.querySelectorAll('.merge')[0].style.display = 'inline'
144 }
145
146 // Expands the view. This is the opposite of "Collapse"
147 function uncollapse() {
148 unmerge();
149
150 // Make the comments visible.
151 var comments = document.querySelectorAll('.DevComment');
152 for(var i = 0; i < comments.length; i++) {
153 comments[i].style.display = "";
154 }
155
156 // Make the details visible.
157 var details = document.querySelectorAll('.DevDetails');
158 for(var i = 0; i < details.length; i++) {
159 details[i].style.display = "";
160 }
161
162 // Remove the round corner (lower right) for the Revision box.
163 var revisions = document.querySelectorAll('.DevRev');
164 for(var i = 0; i < revisions.length; i++) {
165 revisions[i].className = revisions[i].className.replace('DevRevCollapse' , '');
166 }
167
168 // Remoe the round corner (lower left) for the last category box.
169 var status = document.querySelectorAll('.DevStatus');
170 for(var i = 0; i < status.length; i++) {
171 status[i].className = status[i].className.replace('DevStatusCollapse', ' ');
172 }
173
174 // Delete the cookies that say that we want to be collapsed or merged.
175 eraseCookie('collapsed')
176 eraseCookie('merged')
177
178 // Display the "collapse" and "merge" buttons.
179 document.querySelectorAll('.collapse')[0].style.display = 'inline'
180 document.querySelectorAll('.merge')[0].style.display = 'inline'
181
182 // Remove the "uncollapse" and "unmerge" buttons.
183 document.querySelectorAll('.uncollapse')[0].style.display = 'none'
184 document.querySelectorAll('.unmerge')[0].style.display = 'none'
185 }
186
187 // Merge all the status boxes together.
188 function merge() {
189 collapse();
190
191 // Hide all the spacing.
192 var spacing = document.querySelectorAll('.DevStatusSpacing');
193 for(var i = 0; i < spacing.length; i++) {
194 spacing[i].style.display = "none";
195 }
196
197 // Each boxes have, in the className, a tag that uniquely represents the
198 // build where this data comes from.
199 // Since we want to merge all the boxes coming from the same build, we
200 // parse the document to find all the builds, and then, for each build, we
201 // concatenate the boxes.
202
203 var allTags = [];
204 all = document.getElementsByTagName('*')
205 for(var i = 0; i < all.length; i++) {
206 var element = all[i];
207 start = element.className.indexOf('Tag')
208 if (start != -1) {
209 var className = ""
210 end = element.className.indexOf(' ', start)
211 if (end != -1) {
212 className = element.className.substring(start, end);
213 } else {
214 className = element.className.substring(start);
215 }
216 allTags[className] = 1;
217 }
218 }
219
220 // Mergeall tags that we found
221 for (i in allTags) {
222 var current = document.querySelectorAll('.' + i);
223
224 // We do the work only if there is more than 1 box with the same
225 // build.
226 if (current.length > 1) {
227 // Add the noround class to all the boxes.
228 for(var i = 0; i < current.length; i++) {
229 current[i].className = current[i].className + ' noround';
230 }
231
232 // Add the begin class to the first box.
233 current[0].className = current[0].className + ' begin';
234
235 // Add the end class to the last box.
236 last = current.length - 1;
237 current[last].className = current[last].className + ' end';
238 }
239 }
240
241 // Display the "unmerge" button.
242 document.querySelectorAll('.unmerge')[0].style.display = 'inline'
243 document.querySelectorAll('.uncollapse')[0].style.display = 'inline'
244
245 // Remove the "merge" button.
246 document.querySelectorAll('.collapse')[0].style.display = 'none'
247 document.querySelectorAll('.merge')[0].style.display = 'none'
248
249 // Create a cookie to remember that we want to be merged.
250 createCookie('merged', 'true', 30)
251 }
252
253 // Un-merge the view. This is the opposite of "merge".
254 function unmerge() {
255 // We put back all the spacing.
256 var spacing = document.querySelectorAll('.DevStatusSpacing');
257 for(var i = 0; i < spacing.length; i++) {
258 spacing[i].style.display = "";
259 }
260
261 // We remove the class added to all the boxes we modified.
262 var noround = document.querySelectorAll('.noround');
263 for(var i = 0; i < noround.length; i++) {
264 noround[i].className = noround[i].className.replace("begin", '');
265 noround[i].className = noround[i].className.replace("end", '');
266 noround[i].className = noround[i].className.replace("noround", '');
267 }
268
269 // Delete the cookie, we don't want to be merged anymore.
270 eraseCookie('merged')
271
272 // Display the "merge" button.
273 document.querySelectorAll('.merge')[0].style.display = 'inline'
274
275 // Hide the "unmerge" button.
276 document.querySelectorAll('.unmerge')[0].style.display = 'none'
277 }
278
279 function SetupView() {
280 if (readCookie('merged')) {
281 merge();
282 } else if (readCookie('collapsed')) {
283 collapse();
284 }
285 }
286
287 document.addEventListener("DOMContentLoaded", SetupView, false);
288
289 // ]]>
290 </script>
291 </head>
292 <body class="interface">
293 <div class="header">
294 <a href=".">Home</a>
295 - <a href="waterfall">Waterfall</a>
296 <a href="grid">Grid</a>
297 <a href="tgrid">T-Grid</a>
298 <a href="console">Console</a>
299 <a href="builders">Builders</a>
300 <a href="one_line_per_build">Recent Builds</a>
301 <a href="buildslaves">Buildslaves</a>
302 <a href="changes">Changesources</a>
303 - <a href="json/help">JSON API</a>
304 - <a href="about">About</a>
305 </div>
306
307 <hr/>
308 <script>
309 /**
310 * Pseudo namespace for chromium - keep it short because we are in a very
311 * narrow scope for this file.
312 * @type {Object}
313 */
314 var c = {};
315
316 /**
317 * Replaces html references with anchor tags to the same.
318 * @param {String} className CSS class to operate on.
319 */
320 function autoLink(className) {
321 var comments = document.querySelectorAll(className);
322 for(var i = 0; i < comments.length; i++) {
323 comments[i].innerHTML = comments[i].innerHTML.replace(
324 /https?:\/\/[^ \t\n<]*/g, '<a href="$&">$&</a>');
325 }
326 };
327
328 window.addEventListener("load", function() {
329 autoLink('.DevComment');
330 }, false);
331
332 /**
333 * This is the indicator for whether we are in console or waterfall
334 * mode, or some future resource.
335 * @type {String}
336 */
337 c.viewtype = location.pathname.split('/').slice(-1);
338
339 /**
340 * Returns a search string portion including marker, or an empty string.
341 * optional.
342 * @param {String} opt_s A search string, or some form of emptiness.
343 * @returns {!String}
344 */
345 function search(opt_s) {
346 return opt_s ? '?' + opt_s.replace(/^[?]/, '') : '';
347 };
348
349 /**
350 * Replicates a string.
351 * @param {Number} i A whole number of repetitions.
352 * @param {String} x The string to be repeated.
353 * @returns {!String}
354 */
355 function repeat(i, x){
356 var t = ''
357 for (j = 0; j < i; j++) { t += x; }
358 return t;
359 };
360
361 /**
362 * A simple HTML table string.
363 * @param {String} attributes A set of HTML attributes for the table.
364 * @param {String} contents The contents.
365 * @returns {!String}
366 */
367 function table(attributes, contents) {
368 return '<table ' + attributes + '>' + contents + '</table>\n';
369 };
370
371 /**
372 * A simple HTML div string.
373 * @param {String} attributes A set of HTML attributes for the div.
374 * @param {String} contents The contents.
375 * @returns {!String}
376 */
377 function div(attributes, contents) {
378 return '<div ' + attributes + '>' + contents + '</div>';
379 };
380
381 /**
382 * A simple HTML table row string.
383 * @param {String} attributes A set of HTML attributes for the table row.
384 * @param {String} contents The contents.
385 * @returns {!String}
386 */
387 function tr(contents) {
388 return '<tr>' + contents + '</tr>\n';
389 };
390
391 /**
392 * A simple HTML table cell string.
393 * @param {String} attributes A set of HTML attributes for the table cell.
394 * @param {String} contents The contents.
395 * @returns {!String}
396 */
397 function td(attributes, contents) {
398 return '<td ' + attributes + '>' + contents + '</td>';
399 };
400
401 /**
402 * A simple HTML anchor string.
403 * @param {String} url The value for the href.
404 * @param {String} attributes A set of HTML attributes for the table.
405 * @param {String} contents The contents.
406 * @returns {!String}
407 */
408 function a(url, contents, attributes) {
409 return '<a href="' + url + '" ' + attributes + '>' + contents + '</a>';
410 };
411
412 /**
413 * Gives an HTML anchor string to the specified URL, but of the same view
414 * type as the current page.
415 * @param {String} url The URL portion up to the view.
416 * @param {String} search_opt A the query portion.
417 * @param {String} contents The contents for the tag.
418 * @returns {!String}
419 */
420 function aView(url, search_opt, contents) {
421 return a((url ? url + '/' : '') + c.viewtype + search(search_opt),
422 contents, '')
423 };
424
425 /**
426 * A simple HTML iframe string.
427 * @param {String} attributes A set of HTML attributes for the table.
428 * @param {String} url The source of the iframe.
429 * @returns {!String} the iframe or an empty string if noframe is specified.
430 */
431 function iFrame(attributes, url) {
432 if (window.location.href.search('noframe') == -1) {
433 return '<iframe ' + attributes + ' src="' + url + '"></iframe>';
434 }
435 return ''
436 };
437 </script>
438
439 <div class="Announcement">
440
441 <iframe width="100%" height="44" frameborder="0" scrolling="no" src="http://chro mium-status.appspot.com/current"></iframe>
442
443 <center style="padding: 0 7px">
444 <table width="100%" valign="top" bgcolor="#efefef" style="-webkit-border-botto m-left-radius: 24px; -webkit-border-bottom-right-radius: 24px; -moz-border-botto m-right-radius: 24px; -moz-border-bottom-right-radius: 24px; box-shadow: 2px 2 px 6px rgba(0, 0, 0, 0.6); -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); -web kit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);">
445 <tr>
446 <td width="29%">
447 <table valign="top" width="100%">
448 <tr>
449 <td style="text-align: right;">
450 <b>Builds:</b>
451 </td>
452 <td>
453 <a href="http://commondatastorage.googleapis.com/chromium-browser- continuous/index.html">continuous</a> |
454 <a href="http://build.chromium.org/f/chromium/symsrv/index.html">s ymbols</a> |
455 <a href="http://chromium-status.appspot.com">status</a>
456 </td>
457 </tr>
458 <tr>
459 <td style="text-align: right;">
460 <b>Dashboards:</b>
461 </td>
462 <td>
463 <a href="http://build.chromium.org/f/chromium/perf/dashboard/overv iew.html">perf</a> |
464 <a href="http://build.chromium.org/f/chromium/perf/dashboard/memor y.html">memory</a> |
465 <a href="http://build.chromium.org/f/chromium/perf/dashboard/sizes .html">sizes</a> |
466 <a href="http://build.chromium.org/f/chromium/coverage/">coverage< /a> |
467 <a href="http://build.chromium.org/f/chromium/flakiness/">flakines s</a> |
468 <a href="http://build.chromium.org/p/chromium/stats">stats</a>
469 </td>
470 </tr>
471 <tr>
472 <td style="text-align: right;">
473 <b>Chromium:</b>
474 </td>
475 <td>
476 <a href="http://src.chromium.org/viewvc/chrome">sources</a> |
477 <a href="http://codereview.chromium.org/">reviews</a> |
478 <a href="http://code.google.com/p/chromium/issues/list?can=2&q=&so rt=pri+mstone&colspec=ID%20Stars%20Pri%20Area%20Type%20Status%20Summary%20Modifi ed%20Owner%20Mstone">bugs</a> |
479 <a href="http://dev.chromium.org/Home">dev</a> |
480 <a href="http://www.google.com/support/chrome/">support</a>
481 </td>
482 </tr>
483 <tr>
484 <td style="text-align: right;">
485 <b>Sheriffs:</b>
486 </td>
487 <td>
488 <script src='http://chromium-build-master.appspot.com/p/chromium/s heriff.js'></script>,<br>
489 <script src='http://chromium-build-master.appspot.com/p/chromium/s heriff_webkit.js'></script>(WebKit),
490 <script src='http://chromium-build-master.appspot.com/p/chromium/s heriff_memory.js'></script>(Memory),
491 <script src='http://chromium-build-master.appspot.com/p/chromium/s heriff_nacl.js'></script>(NaCl),<br>
492 <script src='http://chromium-build-master.appspot.com/p/chromium/s heriff_perf.js'></script>(Perf),
493 <script src='http://chromium-build-master.appspot.com/p/chromium/s heriff_cros_mtv.js'></script>,
494 <script src='http://chromium-build-master.appspot.com/p/chromium/s heriff_cros_nonmtv.js'></script>(CrOS),<br>
495 <a href="https://www.google.com/calendar/render?cid=google.com_iqf ka4i9asiva67vlqqf1es094%40group.calendar.google.com">trooper schedule</a>
496 </td>
497 </tr>
498 <tr>
499 <td style="text-align: right;">
500 <b>Navigate:</b>
501 </td>
502 <td colspan="2">
503 <script>
504 document.write([
505 a("http://dev.chromium.org/developers/testing/chromium-build-inf rastructure/tour-of-the-chromium-buildbot", "about", ""),
506 a("./waterfall/help", "customize", ""),
507 a("./waterfall", "waterfall", ""),
508 a("./console", "console", ""),
509 a("../tryserver.chromium/waterfall", "try", ""),
510 aView("../chromium.fyi", "", "experimental"),
511 a("./waterfall?show_events=true&failures_only=true", "failures", ""),
512 aView("../chromium.memory", "", "memory"),
513 aView("../chromium.memory.fyi", "", "memory fyi"),
514 aView("../chromium.chromiumos", "", "chromiumos chrome"),
515 aView("../chromiumos", "", "chromiumos team"),
516 aView("../client.nacl", "", "NaCl")].join(' | '));
517 </script>
518 </td>
519 </tr>
520 </table>
521 </td>
522 <td width="1" bgcolor="#CCCCCC">
523 </td>
524 <td width="1%">
525 </td>
526 <td width="70%">
527 <table width="100%">
528 <script language="javascript">
529 c.chromium = '';
530 c.chromium_chromiumos = '';
531 c.webkit = 'builder=Webkit+Win+Builder+%28deps%29&builder=Webkit+Win +%28deps%29&builder=Webkit+Mac+Builder+%28deps%29&builder=Webkit+Mac10.6+%28deps %29&builder=Webkit+Linux+%28deps%29';
532 c.memory = '';
533 c.memory_fyi = '';
534 c.perf = '';
535 c.cros = '';
536 c.chrome = '';
537 c.lkgr = '';
538 c.pyauto = '';
539
540 c.status = '../chromium';
541 c.status_cros = '../chromium.chromiumos';
542 c.status_webkit = '../chromium.webkit';
543 c.status_memory = '../chromium.memory';
544 c.status_memory_fyi = '../chromium.memory.fyi';
545 c.status_chrome = '../chromium.chrome';
546 c.status_perf = '../chromium.perf';
547 c.status_lkgr = '../chromium.lkgr';
548 c.status_pyauto = '../chromium.pyauto';
549
550 /**
551 * Builds a reference for the iframe with boxes.
552 * @param {String} x the name of the waterfall.
553 * @returns {String} The URL.
554 */
555 function BarUrl(x) {
556 return 'http://chromium-build-master.appspot.com/p/' + x +
557 '/horizontal_one_box_per_builder';
558 }
559 c.bar = BarUrl('chromium')
560 c.bar_webkit = 'http://build.chromium.org/p/chromium.webkit/horizont al_one_box_per_builder';
561 c.bar_memory = BarUrl('chromium.memory');
562 c.bar_memory_fyi = BarUrl('chromium.memory.fyi');
563 c.bar_perf = BarUrl('chromium.perf');
564 c.bar_chrome = BarUrl('chromium.chrome');
565 c.bar_lkgr = BarUrl('chromium.lkgr');
566 c.bar_pyauto = BarUrl('chromium.pyauto');
567 c.bar_cros = BarUrl('chromium.chromiumos');
568
569
570 /**
571 * Joins URL and search terms.
572 * @param {String} type The Url without the cgi search portion.
573 * @param {String} content The parameters for the sub-selection
574 * inside the master. Optional.
575 * @returns {String} A completed URL.
576 */
577 function GetUrl(type, content) {
578 return type + search(content);
579 }
580
581 /**
582 * Callback to replace the LKGR link with one that identifies
583 * the current revision for the LKGR.
584 */
585 function DisplayLKGR() {
586 var xmlHttp = new XMLHttpRequest();
587 var lkgrPath = c.status_lkgr +
588 '/json/builders/Linux%20x64/builds/-1?as_text=1';
589 var lkgrLink = document.getElementById('LKGRLink');
590 xmlHttp.open('GET', lkgrPath, false);
591 xmlHttp.send(null);
592 if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {
593 var buildData;
594 if (typeof (JSON) !== 'undefined' &&
595 typeof (JSON.parse) === 'function') {
596 buildData = JSON.parse(xmlHttp.responseText);
597 } else {
598 buildData = eval('(' + xmlHttp.responseText + ')');
599 }
600 var properties = buildData['properties'];
601 for (var i = 0; i < properties.length; i++) {
602 if (properties[i][0] == 'got_revision') {
603 lkgrLink.innerHTML = 'LKGR<br>(' + properties[i][1] + ')';
604 return;
605 }
606 }
607 }
608 }
609
610 c.default_iframe_properties = [
611 'width="100%"',
612 'height="20"',
613 'frameborder="0"',
614 'scrolling="no"',
615 ].join(' ');
616
617 /**
618 * The most detailed specification of a builder bar with boxes.
619 * Reutrns an HTMLstring with 2 <td>s
620 * @param {String} status_url URL portion for the title link.
621 * @param {String} bar_url URL portion for the array of boxes.
622 * @param {String} content specification for the references, e.g..
623 * @param {String} name what to call this bar.
624 * @param {String} bar_properties extra attributes for the array
625 * of boxes portion.
626 * @param {String} link_properties extra attributes for the name
627 * portion that is a link.
628 * @returns {String}
629 */
630 function HTMLBaseBar(status_url, bar_url, content, name,
631 bar_properties, link_properties) {
632 return td('',
633 a(GetUrl(status_url, content), name,
634 link_properties)) +
635 td(bar_properties,
636 iFrame(c.default_iframe_properties,
637 GetUrl(bar_url, content)));
638 }
639
640 /**
641 * The more common specification of a builder bar with boxes.
642 * Presume to take an entire row.
643 * @param {String} status_url URL portion for the title link.
644 * @param {String} bar_url URL portion for the array of boxes.
645 * @param {String} content specification for the references, e.g..
646 * @param {String} name what to call this bar.
647 * @returns {String}
648 */
649 function HTMLBar(status_url, bar_url, content, name) {
650 return tr(HTMLBaseBar(status_url, bar_url, content, name,
651 'width="99%" colspan=9', ''));
652 }
653
654 /**
655 * A specification of a builder bar with boxes, which is one of
656 * multiple in a row.
657 * Note that since these are elements of a table, percents
658 * can be irrelevant to the final layout.
659 * @param {String} status_url URL portion for the title link.
660 * @param {String} bar_url URL portion for the array of boxes.
661 * @param {String} content specification for the references, e.g..
662 * @param {String} name what to call this bar.
663 * @param {String} pc percent of the line to allocat to the boxes.
664 * @returns {String}
665 */
666 function HTMLSubBar(status_url, bar_url, content, name, pc) {
667 return HTMLBaseBar(status_url, bar_url, content, name,
668 'width="' + pc + '"', '');
669 }
670
671 document.write(tr(td(
672 'colspan=10 width="99%"',
673 div(
674 'class="closerbox" width="100%"',
675 div('class="title" width="100%" height="10px"',
676 a('http://chromium-status.appspot.com', 'Tree closers')) +
677 table(
678 'width="100%"',
679 HTMLBar(c.status, c.bar, c.chromium, 'Chromium') +
680 tr(HTMLSubBar(c.status_cros, c.bar_cros, c.cros,
681 'ChromiumOS', '30%') +
682 HTMLSubBar(c.status_chrome, c.bar_chrome, c.chrome,
683 'Official', '35%') +
684 HTMLSubBar(c.status_memory, c.bar_memory, c.memory,
685 'Memory', '25%')))))));
686
687 document.write(tr(
688 HTMLBaseBar(c.status_webkit, c.bar_webkit, c.webkit,
689 'Webkit', 'colspan=3', '') +
690 HTMLBaseBar(c.status_perf, c.bar_perf, c.perf,
691 'Perf', 'colspan=5', '')));
692
693 document.write(tr(
694 HTMLBaseBar(c.status_lkgr, c.bar_lkgr, c.lkgr,
695 'LKGR', 'width="10%"', 'id="LKGRLink"') +
696 HTMLBaseBar(c.status_pyauto, c.bar_pyauto, c.pyauto,
697 'PyAuto', 'width="15%"', '') +
698 HTMLBaseBar(c.status_memory_fyi, c.bar_memory_fyi, c.memory_fyi,
699 'Memory<br>FYI', 'width="50%" colspan=5', '')));
700
701 setTimeout('DisplayLKGR()', 100);
702 </script>
703 </table>
704 </td>
705 </tr>
706 </table>
707 </center>
708
709 </div>
710 <hr/>
711
712 <div class="content">
713 <div align="center">
714 <table width="95%" class="Grid" border="0" cellspacing="0">
715 <tr>
716 <td width="33%" align="left" class="left_align">
717 </td>
718 <td width="33%" align="center" class="center_align">
719 <div align="center">
720 <table class="info">
721 <tr>
722 <td>Legend:&nbsp;&nbsp;</td>
723 <td class='legend success' title='All tests passed'>Passed</td>
724 <td class='legend failure' title='There is a new failure. Take a l ook!'>Failed</td>
725 <td class='legend warnings' title='It was failing before, and it i s still failing. Make sure you did not introduce new regressions'>Failed&nbsp;Ag ain</td>
726 <td class='legend running' title='The tests are still running'>Run ning</td>
727 <td class='legend exception' title='Something went wrong with the test, there is no result'>Exception</td>
728 <td class='legend offline' title='The builder is offline, as there are no slaves connected to it'>Offline</td>
729 <td class='legend notstarted' title='No result yet.'>No&nbsp;data< /td>
730 </tr>
731 </table>
732 </div>
733 </td>
734 <td width="33%" align="right" class="right_align">
735 <script type="text/javascript">
736 // <![CDATA[
737 function reload_page() {
738 name_value = document.getElementById('namebox').value
739 if (document.location.href.lastIndexOf('?') == -1)
740 document.location.href = document.location.href+ '?name=' + name_v alue;
741 else
742 document.location.href = document.location.href+ '&name=' + name_v alue;
743 }
744 // ]]>
745 </script>
746 <input id='namebox' name='name' type='text' style='color:#999;'
747 onblur='this.value = this.value || this.defaultValue; this.style.col or = "#999";'
748 onfocus='this.value=""; this.style.color = "#000";'
749 value='Personalized for...'/>
750 <input type='submit' value='Go' onclick='reload_page()'/>
751 </td>
752 </tr>
753 </table>
754 </div>
755
756 <br/>
757
758
759 <div align="center">
760 <table width="96%" class="ConsoleData">
761
762
763 <tr>
764 <td width="1%">
765 </td>
766 <td width="1%">
767 </td>
768 <td class='DevSlave Alt last'>
769 <table width="100%">
770 <tr>
771
772 <td class='DevSlaveBox'>
773 <a href='./builders/ASAN%20Builder' title='ASAN Builder' class='DevS laveBox success' target="_blank">
774 </a>
775 </td>
776
777 <td class='DevSlaveBox'>
778 <a href='./builders/ASAN%20Tests%20%281%29' title='ASAN Tests (1)' c lass='DevSlaveBox success' target="_blank">
779 </a>
780 </td>
781
782 <td class='DevSlaveBox'>
783 <a href='./builders/ASAN%20Tests%20%282%29' title='ASAN Tests (2)' c lass='DevSlaveBox failure' target="_blank">
784 </a>
785 </td>
786
787 </tr>
788 </table>
789 </td>
790 </tr>
791
792
793 <tr>
794 <td class='DevRev DevRevCollapse' width="1%">
795 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122177" t arget="_blank">122177</a>
796 </td>
797 <td class='DevName ' width="1%">
798 evan<span style="display:none">ohnoyoudont</span>@chromium.org
799 </td>
800
801 <td class='DevStatus DevStatusCollapse'>
802 <table width="100%">
803 <tr>
804 <td class='DevStatusBox'>
805 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
806 title='ASAN Builder' class='DevStatusBox notstarted '
807 target="_blank"></a>
808 </td>
809 <td class='DevStatusBox'>
810 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
811 title='ASAN Tests (1)' class='DevStatusBox notstarted '
812 target="_blank"></a>
813 </td>
814 <td class='DevStatusBox'>
815 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
816 title='ASAN Tests (2)' class='DevStatusBox notstarted '
817 target="_blank"></a>
818 </td>
819
820 </tr>
821 </table>
822 </td>
823 </tr>
824
825 <tr>
826 <td colspan="3" class='DevComment '>
827 Remove myself from base/OWNERS.<br/><br/>I don&#39;t want to be involved i n it.
828 </td>
829 </tr>
830
831
832
833 <tr class='DevStatusSpacing'>
834 <td>
835 </td>
836 </tr>
837
838 <tr>
839 <td class='DevRev Alt DevRevCollapse' width="1%">
840 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122176" t arget="_blank">122176</a>
841 </td>
842 <td class='DevName Alt' width="1%">
843 yzshen<span style="display:none">ohnoyoudont</span>@chromium.org
844 </td>
845
846 <td class='DevStatus Alt DevStatusCollapse'>
847 <table width="100%">
848 <tr>
849 <td class='DevStatusBox'>
850 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
851 title='ASAN Builder' class='DevStatusBox notstarted '
852 target="_blank"></a>
853 </td>
854 <td class='DevStatusBox'>
855 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
856 title='ASAN Tests (1)' class='DevStatusBox notstarted '
857 target="_blank"></a>
858 </td>
859 <td class='DevStatusBox'>
860 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
861 title='ASAN Tests (2)' class='DevStatusBox notstarted '
862 target="_blank"></a>
863 </td>
864
865 </tr>
866 </table>
867 </td>
868 </tr>
869
870 <tr>
871 <td colspan="3" class='DevComment Alt'>
872 Implement device enumeration for PPB_VideoCapture_Dev.<br/><br/>- Implemen t PPB_VideoCapture_Dev v0.2.<br/>- Use a ref-counted PlatformVideoCapture to man age lifespan of media::VideoCapture::EventHandler, instead of manipulating the r ef count of PPB_VideoCapture_Impl.<br/>- Extend examples/video_capture.<br/><br/ >BUG=None<br/>TEST=examples/video_capture<br/><br/>Review URL: https://chromiumc odereview.appspot.com/9234064
873 </td>
874 </tr>
875
876
877
878 <tr class='DevStatusSpacing'>
879 <td>
880 </td>
881 </tr>
882
883 <tr>
884 <td class='DevRev DevRevCollapse' width="1%">
885 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122175" t arget="_blank">122175</a>
886 </td>
887 <td class='DevName ' width="1%">
888 aaronlevbugs<span style="display:none">ohnoyoudont</span>@gmail.com
889 </td>
890
891 <td class='DevStatus DevStatusCollapse'>
892 <table width="100%">
893 <tr>
894 <td class='DevStatusBox'>
895 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
896 title='ASAN Builder' class='DevStatusBox notstarted '
897 target="_blank"></a>
898 </td>
899 <td class='DevStatusBox'>
900 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
901 title='ASAN Tests (1)' class='DevStatusBox notstarted '
902 target="_blank"></a>
903 </td>
904 <td class='DevStatusBox'>
905 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
906 title='ASAN Tests (2)' class='DevStatusBox notstarted '
907 target="_blank"></a>
908 </td>
909
910 </tr>
911 </table>
912 </td>
913 </tr>
914
915 <tr>
916 <td colspan="3" class='DevComment '>
917 Expose correct MSAA roles for ARIA tab-related roles.<br/><br/>BUG=89180<b r/>TEST=Manually, with accProbe<br/><br/><br/>Review URL: http://codereview.chro mium.org/9391020
918 </td>
919 </tr>
920
921
922
923 <tr class='DevStatusSpacing'>
924 <td>
925 </td>
926 </tr>
927
928 <tr>
929 <td class='DevRev Alt DevRevCollapse' width="1%">
930 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122173" t arget="_blank">122173</a>
931 </td>
932 <td class='DevName Alt' width="1%">
933 jam<span style="display:none">ohnoyoudont</span>@chromium.org
934 </td>
935
936 <td class='DevStatus Alt DevStatusCollapse'>
937 <table width="100%">
938 <tr>
939 <td class='DevStatusBox'>
940 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11498", event); return false;'
941 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11498'
942 target="_blank"></a>
943 </td>
944 <td class='DevStatusBox'>
945 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5813", event); return false;'
946 title='ASAN Tests (1) ETA: 798s' class='DevStatusBox running Tag ASANTests15813'
947 target="_blank"></a>
948 </td>
949 <td class='DevStatusBox'>
950 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4467", event); return false;'
951 title='ASAN Tests (2) ETA: 1101s' class='DevStatusBox running Ta gASANTests24467'
952 target="_blank"></a>
953 </td>
954
955 </tr>
956 </table>
957 </td>
958 </tr>
959
960 <tr>
961 <td colspan="3" class='DevComment Alt'>
962 Update new size of ProfileImpl
963 </td>
964 </tr>
965
966
967
968 <tr class='DevStatusSpacing'>
969 <td>
970 </td>
971 </tr>
972
973 <tr>
974 <td class='DevRev DevRevCollapse' width="1%">
975 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122170" t arget="_blank">122170</a>
976 </td>
977 <td class='DevName ' width="1%">
978 jam<span style="display:none">ohnoyoudont</span>@chromium.org
979 </td>
980
981 <td class='DevStatus DevStatusCollapse'>
982 <table width="100%">
983 <tr>
984 <td class='DevStatusBox'>
985 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11497", event); return false;'
986 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11497'
987 target="_blank"></a>
988 </td>
989 <td class='DevStatusBox'>
990 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5812", event); return false;'
991 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15812'
992 target="_blank"></a>
993 </td>
994 <td class='DevStatusBox'>
995 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4467", event); return false;'
996 title='ASAN Tests (2) ETA: 1101s' class='DevStatusBox running Ta gASANTests24467'
997 target="_blank"></a>
998 </td>
999
1000 </tr>
1001 </table>
1002 </td>
1003 </tr>
1004
1005 <tr>
1006 <td colspan="3" class='DevComment '>
1007 Temporarily ifdef out COMPILE_ASSERT on Linux that checks ProfileImpl&#39; s size while I figure out the correct new size. ProfileImpl derives from Profile which derives from BrowserContext and now I made it derive from base::SupportsU serData.<br/>Review URL: https://chromiumcodereview.appspot.com/9407022
1008 </td>
1009 </tr>
1010
1011
1012
1013 <tr class='DevStatusSpacing'>
1014 <td>
1015 </td>
1016 </tr>
1017
1018 <tr>
1019 <td class='DevRev Alt DevRevCollapse' width="1%">
1020 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122169" t arget="_blank">122169</a>
1021 </td>
1022 <td class='DevName Alt' width="1%">
1023 abodenha<span style="display:none">ohnoyoudont</span>@google.com
1024 </td>
1025
1026 <td class='DevStatus Alt DevStatusCollapse'>
1027 <table width="100%">
1028 <tr>
1029 <td class='DevStatusBox'>
1030 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11496", event); return false;'
1031 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11496'
1032 target="_blank"></a>
1033 </td>
1034 <td class='DevStatusBox'>
1035 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5812", event); return false;'
1036 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15812'
1037 target="_blank"></a>
1038 </td>
1039 <td class='DevStatusBox'>
1040 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4467", event); return false;'
1041 title='ASAN Tests (2) ETA: 1101s' class='DevStatusBox running Ta gASANTests24467'
1042 target="_blank"></a>
1043 </td>
1044
1045 </tr>
1046 </table>
1047 </td>
1048 </tr>
1049
1050 <tr>
1051 <td colspan="3" class='DevComment Alt'>
1052 Launch Chrome DL page if we try to print without Chrome installed.<br/><br />BUG=112019<br/>TEST=<br/><br/>Review URL: https://chromiumcodereview.appspot.c om/9398001
1053 </td>
1054 </tr>
1055
1056
1057
1058 <tr class='DevStatusSpacing'>
1059 <td>
1060 </td>
1061 </tr>
1062
1063 <tr>
1064 <td class='DevRev DevRevCollapse' width="1%">
1065 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122168" t arget="_blank">122168</a>
1066 </td>
1067 <td class='DevName ' width="1%">
1068 evan<span style="display:none">ohnoyoudont</span>@chromium.org
1069 </td>
1070
1071 <td class='DevStatus DevStatusCollapse'>
1072 <table width="100%">
1073 <tr>
1074 <td class='DevStatusBox'>
1075 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11495", event); return false;'
1076 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11495'
1077 target="_blank"></a>
1078 </td>
1079 <td class='DevStatusBox'>
1080 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5811", event); return false;'
1081 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15811'
1082 target="_blank"></a>
1083 </td>
1084 <td class='DevStatusBox'>
1085 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4467", event); return false;'
1086 title='ASAN Tests (2) ETA: 1101s' class='DevStatusBox running Ta gASANTests24467'
1087 target="_blank"></a>
1088 </td>
1089
1090 </tr>
1091 </table>
1092 </td>
1093 </tr>
1094
1095 <tr>
1096 <td colspan="3" class='DevComment '>
1097 Flakiness cleanup: disable remaining flaky tests in src/<br/><br/>See http s://groups.google.com/a/chromium.org/group/chromium-dev/browse_thread/thread/fce c09fc659f39a6<br/><br/>BUG=114386,109405,38404<br/>TBR=sky<br/><br/>Review URL: http://codereview.chromium.org/9405024
1098 </td>
1099 </tr>
1100
1101
1102
1103 <tr class='DevStatusSpacing'>
1104 <td>
1105 </td>
1106 </tr>
1107
1108 <tr>
1109 <td class='DevRev Alt DevRevCollapse' width="1%">
1110 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122166" t arget="_blank">122166</a>
1111 </td>
1112 <td class='DevName Alt' width="1%">
1113 agl<span style="display:none">ohnoyoudont</span>@chromium.org
1114 </td>
1115
1116 <td class='DevStatus Alt DevStatusCollapse'>
1117 <table width="100%">
1118 <tr>
1119 <td class='DevStatusBox'>
1120 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11494", event); return false;'
1121 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11494'
1122 target="_blank"></a>
1123 </td>
1124 <td class='DevStatusBox'>
1125 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5811", event); return false;'
1126 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15811'
1127 target="_blank"></a>
1128 </td>
1129 <td class='DevStatusBox'>
1130 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4467", event); return false;'
1131 title='ASAN Tests (2) ETA: 1101s' class='DevStatusBox running Ta gASANTests24467'
1132 target="_blank"></a>
1133 </td>
1134
1135 </tr>
1136 </table>
1137 </td>
1138 </tr>
1139
1140 <tr>
1141 <td colspan="3" class='DevComment Alt'>
1142 Display an interstitial for weak key errors.<br/><br/>Without this, the re quest is canceled, but no interstitial is shown.<br/><br/>I have checked that al l other ERR_CERT_ errors are handled and only<br/>ERR_CERT_NON_UNIQUE_NAME is mi ssing. However, I don&#39;t see that<br/>ERR_CERT_NON_UNIQUE_NAME can actually b e returned, so that&#39;s probably<br/>fine.<br/><br/>(There is also ERR_CERT_NO T_IN_DNS, but that should be removed.)<br/><br/>BUG=113645<br/>TEST=Import a 512 -bit CA (see bug) and try to navigate to a site which uses it. Verify that an in terstitial is shown.<br/><br/>https://chromiumcodereview.appspot.com/9358060/
1143 </td>
1144 </tr>
1145
1146
1147
1148 <tr class='DevStatusSpacing'>
1149 <td>
1150 </td>
1151 </tr>
1152
1153 <tr>
1154 <td class='DevRev DevRevCollapse' width="1%">
1155 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122164" t arget="_blank">122164</a>
1156 </td>
1157 <td class='DevName ' width="1%">
1158 jam<span style="display:none">ohnoyoudont</span>@chromium.org
1159 </td>
1160
1161 <td class='DevStatus DevStatusCollapse'>
1162 <table width="100%">
1163 <tr>
1164 <td class='DevStatusBox'>
1165 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11493", event); return false;'
1166 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11493'
1167 target="_blank"></a>
1168 </td>
1169 <td class='DevStatusBox'>
1170 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5811", event); return false;'
1171 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15811'
1172 target="_blank"></a>
1173 </td>
1174 <td class='DevStatusBox'>
1175 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4466", event); return false;'
1176 title='ASAN Tests (2) failed browser_tests' class='DevStatusBox f ailure TagASANTests24466'
1177 target="_blank"></a>
1178 </td>
1179
1180 </tr>
1181 </table>
1182 </td>
1183 </tr>
1184
1185 <tr>
1186 <td colspan="3" class='DevComment '>
1187 Add extra data to BrowserContext so that content layer and other embedders can stash data with it that has the same lifetime. Converted SSLHostState to us e it for now. I&#39;ll do the rest in a followup.<br/><br/>BUG=98716<br/>Review URL: https://chromiumcodereview.appspot.com/9348109
1188 </td>
1189 </tr>
1190
1191 <tr>
1192 <td colspan="3" class='DevDetails '>
1193 <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
1194 <li>ASAN Tests (2): browser_tests failed 1 - &nbsp;<a href="console/ ../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/ste ps/browser_tests/logs/DownloadsCloseCheck_5"> DownloadsCloseCheck_5 </a></li>
1195 </ul>
1196 </td>
1197 </tr>
1198
1199
1200 <tr class='DevStatusSpacing'>
1201 <td>
1202 </td>
1203 </tr>
1204
1205 <tr>
1206 <td class='DevRev Alt DevRevCollapse' width="1%">
1207 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122163" t arget="_blank">122163</a>
1208 </td>
1209 <td class='DevName Alt' width="1%">
1210 sadrul<span style="display:none">ohnoyoudont</span>@chromium.org
1211 </td>
1212
1213 <td class='DevStatus Alt DevStatusCollapse'>
1214 <table width="100%">
1215 <tr>
1216 <td class='DevStatusBox'>
1217 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11492", event); return false;'
1218 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11492'
1219 target="_blank"></a>
1220 </td>
1221 <td class='DevStatusBox'>
1222 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5811", event); return false;'
1223 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15811'
1224 target="_blank"></a>
1225 </td>
1226 <td class='DevStatusBox'>
1227 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4466", event); return false;'
1228 title='ASAN Tests (2) failed browser_tests' class='DevStatusBox f ailure TagASANTests24466'
1229 target="_blank"></a>
1230 </td>
1231
1232 </tr>
1233 </table>
1234 </td>
1235 </tr>
1236
1237 <tr>
1238 <td colspan="3" class='DevComment Alt'>
1239 Some touch-event forwarding optimization.<br/><br/>If there is no touch-ev ent handler installed for a webpage, then do not send<br/>touch-events.<br/><br/ >Corresponding webkit change: https://bugs.webkit.org/show_bug.cgi?id=77440<br/> <br/>BUG=110237<br/>TEST=none (suggestions?)<br/><br/>Review URL: https://chromi umcodereview.appspot.com/9233058
1240 </td>
1241 </tr>
1242
1243 <tr>
1244 <td colspan="3" class='DevDetails Alt'>
1245 <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
1246 <li>ASAN Tests (2): browser_tests failed 1 - &nbsp;<a href="console/ ../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/ste ps/browser_tests/logs/DownloadsCloseCheck_5"> DownloadsCloseCheck_5 </a></li>
1247 </ul>
1248 </td>
1249 </tr>
1250
1251
1252 <tr class='DevStatusSpacing'>
1253 <td>
1254 </td>
1255 </tr>
1256
1257 <tr>
1258 <td class='DevRev DevRevCollapse' width="1%">
1259 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122162" t arget="_blank">122162</a>
1260 </td>
1261 <td class='DevName ' width="1%">
1262 sergeyu<span style="display:none">ohnoyoudont</span>@chromium.org
1263 </td>
1264
1265 <td class='DevStatus DevStatusCollapse'>
1266 <table width="100%">
1267 <tr>
1268 <td class='DevStatusBox'>
1269 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11492", event); return false;'
1270 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11492'
1271 target="_blank"></a>
1272 </td>
1273 <td class='DevStatusBox'>
1274 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5811", event); return false;'
1275 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15811'
1276 target="_blank"></a>
1277 </td>
1278 <td class='DevStatusBox'>
1279 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4466", event); return false;'
1280 title='ASAN Tests (2) failed browser_tests' class='DevStatusBox f ailure TagASANTests24466'
1281 target="_blank"></a>
1282 </td>
1283
1284 </tr>
1285 </table>
1286 </td>
1287 </tr>
1288
1289 <tr>
1290 <td colspan="3" class='DevComment '>
1291 Remove old client dependencies that we don&#39;t need anymore.<br/><br/>BU G=74951<br/><br/><br/>Review URL: http://codereview.chromium.org/9361075
1292 </td>
1293 </tr>
1294
1295 <tr>
1296 <td colspan="3" class='DevDetails '>
1297 <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
1298 <li>ASAN Tests (2): browser_tests failed 1 - &nbsp;<a href="console/ ../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/ste ps/browser_tests/logs/DownloadsCloseCheck_5"> DownloadsCloseCheck_5 </a></li>
1299 </ul>
1300 </td>
1301 </tr>
1302
1303
1304 <tr class='DevStatusSpacing'>
1305 <td>
1306 </td>
1307 </tr>
1308
1309 <tr>
1310 <td class='DevRev Alt DevRevCollapse' width="1%">
1311 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122161" t arget="_blank">122161</a>
1312 </td>
1313 <td class='DevName Alt' width="1%">
1314 francoisk777<span style="display:none">ohnoyoudont</span>@gmail.com
1315 </td>
1316
1317 <td class='DevStatus Alt DevStatusCollapse'>
1318 <table width="100%">
1319 <tr>
1320 <td class='DevStatusBox'>
1321 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11491", event); return false;'
1322 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11491'
1323 target="_blank"></a>
1324 </td>
1325 <td class='DevStatusBox'>
1326 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5810", event); return false;'
1327 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15810'
1328 target="_blank"></a>
1329 </td>
1330 <td class='DevStatusBox'>
1331 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4466", event); return false;'
1332 title='ASAN Tests (2) failed browser_tests' class='DevStatusBox f ailure TagASANTests24466'
1333 target="_blank"></a>
1334 </td>
1335
1336 </tr>
1337 </table>
1338 </td>
1339 </tr>
1340
1341 <tr>
1342 <td colspan="3" class='DevComment Alt'>
1343 Linux: Overlay Chrome window icon with profile avatar or Incognito<br/>emb lem/badge.<br/><br/>The window icon will consist of the usual Chrome product ico n with the emblem<br/>in the bottom-right corner.<br/><br/>BUG=108455<br/>TEST=M anual. 1) Incognito window icons are always emblemed with the Incognito<br/>icon , regardless of whether multi-profile is enabled or the number of<br/>profiles. 2) With only one profile, regular window icons are not emblemed (but<br/>Incogni to ones are). 3) With more than one profile, all window icons are<br/>emblemed: regular windows&#39; icons with the current profile&#39;s avatar, and<br/>Incogn ito window icons with the Incognito icon. 4) Icons from the current<br/>screen&# 39;s theme should take precedence over those packaged with Chrome. 5) If<br/>no Chrome icons exist in the current screen&#39;s theme, the product icons<br/>pack aged with Chrome should be used. 6) If the user changes his profile<br/>avatar, all of that profile&#39;s windows&#39; icons should be updated to reflect the<br />change. 7) If the (system or Chrome) theme is changed, all windows&#39; icons< br/>should
1344 </td>
1345 </tr>
1346
1347 <tr>
1348 <td colspan="3" class='DevDetails Alt'>
1349 <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
1350 <li>ASAN Tests (2): browser_tests failed 1 - &nbsp;<a href="console/ ../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/ste ps/browser_tests/logs/DownloadsCloseCheck_5"> DownloadsCloseCheck_5 </a></li>
1351 </ul>
1352 </td>
1353 </tr>
1354
1355
1356 <tr class='DevStatusSpacing'>
1357 <td>
1358 </td>
1359 </tr>
1360
1361 <tr>
1362 <td class='DevRev DevRevCollapse' width="1%">
1363 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122160" t arget="_blank">122160</a>
1364 </td>
1365 <td class='DevName ' width="1%">
1366 wangxianzhu<span style="display:none">ohnoyoudont</span>@chromium.org
1367 </td>
1368
1369 <td class='DevStatus DevStatusCollapse'>
1370 <table width="100%">
1371 <tr>
1372 <td class='DevStatusBox'>
1373 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11490", event); return false;'
1374 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11490'
1375 target="_blank"></a>
1376 </td>
1377 <td class='DevStatusBox'>
1378 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5810", event); return false;'
1379 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15810'
1380 target="_blank"></a>
1381 </td>
1382 <td class='DevStatusBox'>
1383 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4466", event); return false;'
1384 title='ASAN Tests (2) failed browser_tests' class='DevStatusBox f ailure TagASANTests24466'
1385 target="_blank"></a>
1386 </td>
1387
1388 </tr>
1389 </table>
1390 </td>
1391 </tr>
1392
1393 <tr>
1394 <td colspan="3" class='DevComment '>
1395 Fix style issues of tools/android<br/><br/>Review URL: http://codereview.c hromium.org/9402017
1396 </td>
1397 </tr>
1398
1399 <tr>
1400 <td colspan="3" class='DevDetails '>
1401 <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
1402 <li>ASAN Tests (2): browser_tests failed 1 - &nbsp;<a href="console/ ../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/ste ps/browser_tests/logs/DownloadsCloseCheck_5"> DownloadsCloseCheck_5 </a></li>
1403 </ul>
1404 </td>
1405 </tr>
1406
1407
1408 <tr class='DevStatusSpacing'>
1409 <td>
1410 </td>
1411 </tr>
1412
1413 <tr>
1414 <td class='DevRev Alt DevRevCollapse' width="1%">
1415 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122159" t arget="_blank">122159</a>
1416 </td>
1417 <td class='DevName Alt' width="1%">
1418 rdsmith<span style="display:none">ohnoyoudont</span>@chromium.org
1419 </td>
1420
1421 <td class='DevStatus Alt DevStatusCollapse'>
1422 <table width="100%">
1423 <tr>
1424 <td class='DevStatusBox'>
1425 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11490", event); return false;'
1426 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11490'
1427 target="_blank"></a>
1428 </td>
1429 <td class='DevStatusBox'>
1430 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5810", event); return false;'
1431 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15810'
1432 target="_blank"></a>
1433 </td>
1434 <td class='DevStatusBox'>
1435 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4466", event); return false;'
1436 title='ASAN Tests (2) failed browser_tests' class='DevStatusBox f ailure TagASANTests24466'
1437 target="_blank"></a>
1438 </td>
1439
1440 </tr>
1441 </table>
1442 </td>
1443 </tr>
1444
1445 <tr>
1446 <td colspan="3" class='DevComment Alt'>
1447 Isolate initiation counts for downloads to their own histograms and improv e<br/>naming.<br/><br/>BUG=None<br/><br/><br/>Review URL: http://codereview.chro mium.org/9316116
1448 </td>
1449 </tr>
1450
1451 <tr>
1452 <td colspan="3" class='DevDetails Alt'>
1453 <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
1454 <li>ASAN Tests (2): browser_tests failed 1 - &nbsp;<a href="console/ ../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/ste ps/browser_tests/logs/DownloadsCloseCheck_5"> DownloadsCloseCheck_5 </a></li>
1455 </ul>
1456 </td>
1457 </tr>
1458
1459
1460 <tr class='DevStatusSpacing'>
1461 <td>
1462 </td>
1463 </tr>
1464
1465 <tr>
1466 <td class='DevRev DevRevCollapse' width="1%">
1467 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122155" t arget="_blank">122155</a>
1468 </td>
1469 <td class='DevName ' width="1%">
1470 chrome-release<span style="display:none">ohnoyoudont</span>@google.com
1471 </td>
1472
1473 <td class='DevStatus DevStatusCollapse'>
1474 <table width="100%">
1475 <tr>
1476 <td class='DevStatusBox'>
1477 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11489", event); return false;'
1478 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11489'
1479 target="_blank"></a>
1480 </td>
1481 <td class='DevStatusBox'>
1482 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5809", event); return false;'
1483 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15809'
1484 target="_blank"></a>
1485 </td>
1486 <td class='DevStatusBox'>
1487 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4466", event); return false;'
1488 title='ASAN Tests (2) failed browser_tests' class='DevStatusBox f ailure TagASANTests24466'
1489 target="_blank"></a>
1490 </td>
1491
1492 </tr>
1493 </table>
1494 </td>
1495 </tr>
1496
1497 <tr>
1498 <td colspan="3" class='DevComment '>
1499 Updating trunk VERSION from 1043.0 to 1044.0
1500 </td>
1501 </tr>
1502
1503 <tr>
1504 <td colspan="3" class='DevDetails '>
1505 <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
1506 <li>ASAN Tests (2): browser_tests failed 1 - &nbsp;<a href="console/ ../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/ste ps/browser_tests/logs/DownloadsCloseCheck_5"> DownloadsCloseCheck_5 </a></li>
1507 </ul>
1508 </td>
1509 </tr>
1510
1511
1512 <tr class='DevStatusSpacing'>
1513 <td>
1514 </td>
1515 </tr>
1516
1517 <tr>
1518 <td class='DevRev Alt DevRevCollapse' width="1%">
1519 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122151" t arget="_blank">122151</a>
1520 </td>
1521 <td class='DevName Alt' width="1%">
1522 vollick<span style="display:none">ohnoyoudont</span>@google.com
1523 </td>
1524
1525 <td class='DevStatus Alt DevStatusCollapse'>
1526 <table width="100%">
1527 <tr>
1528 <td class='DevStatusBox'>
1529 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11488", event); return false;'
1530 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11488'
1531 target="_blank"></a>
1532 </td>
1533 <td class='DevStatusBox'>
1534 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5808", event); return false;'
1535 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15808'
1536 target="_blank"></a>
1537 </td>
1538 <td class='DevStatusBox'>
1539 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4465", event); return false;'
1540 title='ASAN Tests (2) build successful' class='DevStatusBox succe ss TagASANTests24465'
1541 target="_blank"></a>
1542 </td>
1543
1544 </tr>
1545 </table>
1546 </td>
1547 </tr>
1548
1549 <tr>
1550 <td colspan="3" class='DevComment Alt'>
1551 Revert 122135 - PRESUBMIT check for JavaScript style errors<br/><br/>Attem pt to fix check_licenses<br/><br/>See https://groups.google.com/a/chromium.org/g roup/chromium-dev/browse_thread/thread/97b5dc28d9e5109b/a5bd070bb7f0a4b9<br/><br />BUG=none<br/>TEST=modify any .js file; `git commit` it; run `git cl presubmit` ; look at the errors<br/><br/>Review URL: https://chromiumcodereview.appspot.com /9288045<br/><br/>TBR=tbreisacher@chromium.org<br/>Review URL: https://chromiumc odereview.appspot.com/9401023
1552 </td>
1553 </tr>
1554
1555
1556
1557 <tr class='DevStatusSpacing'>
1558 <td>
1559 </td>
1560 </tr>
1561
1562 <tr>
1563 <td class='DevRev DevRevCollapse' width="1%">
1564 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122149" t arget="_blank">122149</a>
1565 </td>
1566 <td class='DevName ' width="1%">
1567 noelallen<span style="display:none">ohnoyoudont</span>@chromium.org
1568 </td>
1569
1570 <td class='DevStatus DevStatusCollapse'>
1571 <table width="100%">
1572 <tr>
1573 <td class='DevStatusBox'>
1574 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11487", event); return false;'
1575 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11487'
1576 target="_blank"></a>
1577 </td>
1578 <td class='DevStatusBox'>
1579 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5808", event); return false;'
1580 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15808'
1581 target="_blank"></a>
1582 </td>
1583 <td class='DevStatusBox'>
1584 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4465", event); return false;'
1585 title='ASAN Tests (2) build successful' class='DevStatusBox succe ss TagASANTests24465'
1586 target="_blank"></a>
1587 </td>
1588
1589 </tr>
1590 </table>
1591 </td>
1592 </tr>
1593
1594 <tr>
1595 <td colspan="3" class='DevComment '>
1596 Fix PNaCl SDK Builder<br/><br/>Change download script to make sure &#39;pn acl&#39; sdk builder gets toolchain.<br/>Change tarball name for pnacl build to avoid collision.<br/>For now have pnacl toolchain only build pnacl pieces.<br/>< br/>TBR= sehr@google.com<br/>BUG=11292<br/><br/>Review URL: http://codereview.ch romium.org/9408003
1597 </td>
1598 </tr>
1599
1600
1601
1602 <tr class='DevStatusSpacing'>
1603 <td>
1604 </td>
1605 </tr>
1606
1607 <tr>
1608 <td class='DevRev Alt DevRevCollapse' width="1%">
1609 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122148" t arget="_blank">122148</a>
1610 </td>
1611 <td class='DevName Alt' width="1%">
1612 sergeyu<span style="display:none">ohnoyoudont</span>@chromium.org
1613 </td>
1614
1615 <td class='DevStatus Alt DevStatusCollapse'>
1616 <table width="100%">
1617 <tr>
1618 <td class='DevStatusBox'>
1619 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11487", event); return false;'
1620 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11487'
1621 target="_blank"></a>
1622 </td>
1623 <td class='DevStatusBox'>
1624 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5808", event); return false;'
1625 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15808'
1626 target="_blank"></a>
1627 </td>
1628 <td class='DevStatusBox'>
1629 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4465", event); return false;'
1630 title='ASAN Tests (2) build successful' class='DevStatusBox succe ss TagASANTests24465'
1631 target="_blank"></a>
1632 </td>
1633
1634 </tr>
1635 </table>
1636 </td>
1637 </tr>
1638
1639 <tr>
1640 <td colspan="3" class='DevComment Alt'>
1641 Messaging-based interface support in the webapp.<br/><br/>The new ClientPl uginAsync implements messaging-based client plugin <br/>interface. It&#39;s now used for client plugins that support it <br/>(version 5 and above).<br/><br/>BUG =86353<br/><br/><br/>Review URL: http://codereview.chromium.org/9360053
1642 </td>
1643 </tr>
1644
1645
1646
1647 <tr class='DevStatusSpacing'>
1648 <td>
1649 </td>
1650 </tr>
1651
1652 <tr>
1653 <td class='DevRev DevRevCollapse' width="1%">
1654 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122147" t arget="_blank">122147</a>
1655 </td>
1656 <td class='DevName ' width="1%">
1657 zea<span style="display:none">ohnoyoudont</span>@chromium.org
1658 </td>
1659
1660 <td class='DevStatus DevStatusCollapse'>
1661 <table width="100%">
1662 <tr>
1663 <td class='DevStatusBox'>
1664 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11486", event); return false;'
1665 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11486'
1666 target="_blank"></a>
1667 </td>
1668 <td class='DevStatusBox'>
1669 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5807", event); return false;'
1670 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15807'
1671 target="_blank"></a>
1672 </td>
1673 <td class='DevStatusBox'>
1674 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4465", event); return false;'
1675 title='ASAN Tests (2) build successful' class='DevStatusBox succe ss TagASANTests24465'
1676 target="_blank"></a>
1677 </td>
1678
1679 </tr>
1680 </table>
1681 </td>
1682 </tr>
1683
1684 <tr>
1685 <td colspan="3" class='DevComment '>
1686 [Sync] Re-disable bookmark favicon test.<br/><br/>Related change didn&#39; t wind up fixing as hoped.<br/><br/>TBR=dpapad<br/>BUG=94941<br/>TEST=<br/><br/> Review URL: https://chromiumcodereview.appspot.com/9406021
1687 </td>
1688 </tr>
1689
1690
1691
1692 <tr class='DevStatusSpacing'>
1693 <td>
1694 </td>
1695 </tr>
1696
1697 <tr>
1698 <td class='DevRev Alt DevRevCollapse' width="1%">
1699 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122146" t arget="_blank">122146</a>
1700 </td>
1701 <td class='DevName Alt' width="1%">
1702 tommi<span style="display:none">ohnoyoudont</span>@chromium.org
1703 </td>
1704
1705 <td class='DevStatus Alt DevStatusCollapse'>
1706 <table width="100%">
1707 <tr>
1708 <td class='DevStatusBox'>
1709 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11485", event); return false;'
1710 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11485'
1711 target="_blank"></a>
1712 </td>
1713 <td class='DevStatusBox'>
1714 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5807", event); return false;'
1715 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15807'
1716 target="_blank"></a>
1717 </td>
1718 <td class='DevStatusBox'>
1719 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4464", event); return false;'
1720 title='ASAN Tests (2) build successful' class='DevStatusBox succe ss TagASANTests24464'
1721 target="_blank"></a>
1722 </td>
1723
1724 </tr>
1725 </table>
1726 </td>
1727 </tr>
1728
1729 <tr>
1730 <td colspan="3" class='DevComment Alt'>
1731 Update DCHECKs in AlsaPcmOutputStream to account for NULL message loop.<br /><br/>TBR=xians<br/><br/>Review URL: https://chromiumcodereview.appspot.com/940 3027
1732 </td>
1733 </tr>
1734
1735
1736
1737 <tr class='DevStatusSpacing'>
1738 <td>
1739 </td>
1740 </tr>
1741
1742 <tr>
1743 <td class='DevRev DevRevCollapse' width="1%">
1744 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122145" t arget="_blank">122145</a>
1745 </td>
1746 <td class='DevName ' width="1%">
1747 bartfab<span style="display:none">ohnoyoudont</span>@google.com
1748 </td>
1749
1750 <td class='DevStatus DevStatusCollapse'>
1751 <table width="100%">
1752 <tr>
1753 <td class='DevStatusBox'>
1754 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11485", event); return false;'
1755 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11485'
1756 target="_blank"></a>
1757 </td>
1758 <td class='DevStatusBox'>
1759 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5807", event); return false;'
1760 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15807'
1761 target="_blank"></a>
1762 </td>
1763 <td class='DevStatusBox'>
1764 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4464", event); return false;'
1765 title='ASAN Tests (2) build successful' class='DevStatusBox succe ss TagASANTests24464'
1766 target="_blank"></a>
1767 </td>
1768
1769 </tr>
1770 </table>
1771 </td>
1772 </tr>
1773
1774 <tr>
1775 <td colspan="3" class='DevComment '>
1776 Rename the ephemeral_users field in the device policy protobuf<br/><br/>Th is CL renames the &#34;ephemeral_users&#34; in the device policy protobuf<br/>to &#34;ephemeral_users_enabled&#34;, making it clear that this is a Boolean<br/>s etting.<br/><br/>BUG=chromium-os:26406<br/>TEST=unit_test *Policy* and CrosSetti ngsTest.SetEphemeralUsersEnabled<br/>TEST=chrome builds and runs<br/><br/><br/>R eview URL: http://codereview.chromium.org/9365078
1777 </td>
1778 </tr>
1779
1780
1781
1782 <tr class='DevStatusSpacing'>
1783 <td>
1784 </td>
1785 </tr>
1786
1787 <tr>
1788 <td class='DevRev Alt DevRevCollapse' width="1%">
1789 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122144" t arget="_blank">122144</a>
1790 </td>
1791 <td class='DevName Alt' width="1%">
1792 jhawkins<span style="display:none">ohnoyoudont</span>@chromium.org
1793 </td>
1794
1795 <td class='DevStatus Alt DevStatusCollapse'>
1796 <table width="100%">
1797 <tr>
1798 <td class='DevStatusBox'>
1799 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11484", event); return false;'
1800 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11484'
1801 target="_blank"></a>
1802 </td>
1803 <td class='DevStatusBox'>
1804 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5807", event); return false;'
1805 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15807'
1806 target="_blank"></a>
1807 </td>
1808 <td class='DevStatusBox'>
1809 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4464", event); return false;'
1810 title='ASAN Tests (2) build successful' class='DevStatusBox succe ss TagASANTests24464'
1811 target="_blank"></a>
1812 </td>
1813
1814 </tr>
1815 </table>
1816 </td>
1817 </tr>
1818
1819 <tr>
1820 <td colspan="3" class='DevComment Alt'>
1821 Settings: Fix setting the title when loading a specific page.<br/><br/>The re are three places we need to set the title:<br/>* Showing a page.<br/>* Showin g an overlay.<br/>* Updating history, .e.g., after closing an overlay.<br/><br/> BUG=113940<br/>TEST=none<br/>R=csilv<br/><br/>Review URL: https://chromiumcodere view.appspot.com/9405023
1822 </td>
1823 </tr>
1824
1825
1826
1827 <tr class='DevStatusSpacing'>
1828 <td>
1829 </td>
1830 </tr>
1831
1832 <tr>
1833 <td class='DevRev DevRevCollapse' width="1%">
1834 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122142" t arget="_blank">122142</a>
1835 </td>
1836 <td class='DevName ' width="1%">
1837 keybuk<span style="display:none">ohnoyoudont</span>@chromium.org
1838 </td>
1839
1840 <td class='DevStatus DevStatusCollapse'>
1841 <table width="100%">
1842 <tr>
1843 <td class='DevStatusBox'>
1844 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11483", event); return false;'
1845 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11483'
1846 target="_blank"></a>
1847 </td>
1848 <td class='DevStatusBox'>
1849 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5806", event); return false;'
1850 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15806'
1851 target="_blank"></a>
1852 </td>
1853 <td class='DevStatusBox'>
1854 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4464", event); return false;'
1855 title='ASAN Tests (2) build successful' class='DevStatusBox succe ss TagASANTests24464'
1856 target="_blank"></a>
1857 </td>
1858
1859 </tr>
1860 </table>
1861 </td>
1862 </tr>
1863
1864 <tr>
1865 <td colspan="3" class='DevComment '>
1866 Update cros.DEPS<br/><br/>Added common bluetooth properties constants to c ros_system_api<br/>needed by bluetooth properties code.<br/><br/>BUG=chromium-os :22086<br/>TEST=verified cros_set_ver pins the newer version<br/><br/>Change-Id: Ie299d796cee3bd97b6f49a8ac86aa30c5c99283f<br/><br/><br/>Review URL: http://code review.chromium.org/9401015
1867 </td>
1868 </tr>
1869
1870
1871
1872 <tr class='DevStatusSpacing'>
1873 <td>
1874 </td>
1875 </tr>
1876
1877 <tr>
1878 <td class='DevRev Alt DevRevCollapse' width="1%">
1879 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122141" t arget="_blank">122141</a>
1880 </td>
1881 <td class='DevName Alt' width="1%">
1882 dbeam<span style="display:none">ohnoyoudont</span>@chromium.org
1883 </td>
1884
1885 <td class='DevStatus Alt DevStatusCollapse'>
1886 <table width="100%">
1887 <tr>
1888 <td class='DevStatusBox'>
1889 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11482", event); return false;'
1890 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11482'
1891 target="_blank"></a>
1892 </td>
1893 <td class='DevStatusBox'>
1894 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5806", event); return false;'
1895 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15806'
1896 target="_blank"></a>
1897 </td>
1898 <td class='DevStatusBox'>
1899 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4464", event); return false;'
1900 title='ASAN Tests (2) build successful' class='DevStatusBox succe ss TagASANTests24464'
1901 target="_blank"></a>
1902 </td>
1903
1904 </tr>
1905 </table>
1906 </td>
1907 </tr>
1908
1909 <tr>
1910 <td colspan="3" class='DevComment Alt'>
1911 [Clean up] OS_MAC -&gt; OS_MACOSX<br/><br/>R=thakis@chromium.org,brettw@ch romium.org<br/>TBR=cpu@chromium.org<br/>BUG=None<br/>TEST=Less developers accide ntally OS_MAC<br/>NOTRY=true<br/><br/>Review URL: http://codereview.chromium.org /9404012
1912 </td>
1913 </tr>
1914
1915
1916
1917 <tr class='DevStatusSpacing'>
1918 <td>
1919 </td>
1920 </tr>
1921
1922 <tr>
1923 <td class='DevRev DevRevCollapse' width="1%">
1924 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122140" t arget="_blank">122140</a>
1925 </td>
1926 <td class='DevName ' width="1%">
1927 tdresser<span style="display:none">ohnoyoudont</span>@chromium.org
1928 </td>
1929
1930 <td class='DevStatus DevStatusCollapse'>
1931 <table width="100%">
1932 <tr>
1933 <td class='DevStatusBox'>
1934 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil der&number=11482", event); return false;'
1935 title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11482'
1936 target="_blank"></a>
1937 </td>
1938 <td class='DevStatusBox'>
1939 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%281%29&number=5806", event); return false;'
1940 title='ASAN Tests (1) build successful' class='DevStatusBox succe ss TagASANTests15806'
1941 target="_blank"></a>
1942 </td>
1943 <td class='DevStatusBox'>
1944 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test s%20%282%29&number=4464", event); return false;'
1945 title='ASAN Tests (2) build successful' class='DevStatusBox succe ss TagASANTests24464'
1946 target="_blank"></a>
1947 </td>
1948
1949 </tr>
1950 </table>
1951 </td>
1952 </tr>
1953
1954 <tr>
1955 <td colspan="3" class='DevComment '>
1956 Gesture Recognizer Diagram now references design document on chromium.org. <br/><br/>https://sites.google.com/a/chromium.org/dev/developers/design-documen ts/aura/gesture-recognizer<br/>BUG=none<br/>TEST=none<br/><br/>Review URL: http: //codereview.chromium.org/9404013
1957 </td>
1958 </tr>
1959
1960
1961
1962 <tr class='DevStatusSpacing'>
1963 <td>
1964 </td>
1965 </tr>
1966
1967 </table>
1968 </div>
1969
1970
1971 <div id="divBox" onmouseout="if (checkMouseLeave(this, event)) this.style.displa y = 'None'" class="BuildWaterfall">
1972 </div>
1973
1974
1975 <iframe id="frameBox" style="display: none;"></iframe>
1976
1977 <script type="text/javascript">
1978 // replace 'onload="updateDiv(event);" with this, as iframe doesn't have onload event in xhtml
1979 window.addEventListener("load", function() {
1980 document.getElementById('frameBox').onload = function(event) {
1981 updateDiv(event);
1982 };
1983 }, false);
1984 </script>
1985
1986 </div><div class="footer" style="clear:both">
1987 <hr/>
1988 [ <a class='collapse' href='#' OnClick='collapse(); return false;'>collapse</a >
1989 <a class='uncollapse' href='#' OnClick='uncollapse(); return false;'>un-collap se</a>
1990 <a class='merge' href="#" OnClick="merge(); return false;">merge</a>
1991 <a class='unmerge' style='display: none' href="#" OnClick="unmerge(); return f alse;">un-merge</a> ]
1992 <p>Debug info: {'revision_final': 25, 'builds_scanned': 120, 'source_all': 25, 'source_len': 25, 'last_revision': u'122140', 'from_cache': 0, 'added_blocks': 60, 'load_time': 0.37749218940734863}</p>
1993 </div>
1994 </body>
1995 </html>
OLDNEW
« no previous file with comments | « tests/test_console_merger/chromium_main_console_input.html ('k') | tests/test_console_merger/chromium_merged_console.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698