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

Side by Side Diff: tests/test_console_merger/chromium_chrome_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
« no previous file with comments | « handler.py ('k') | tests/test_console_merger/chromium_chromiumos_console_input.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 Chrome</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/Google%20Chrome%20Win' title='Google Chrome Win' class='DevSlaveBox success' target="_blank">
774 </a>
775 </td>
776
777 <td class='DevSlaveBox'>
778 <a href='./builders/Google%20Chrome%20Linux' title='Google Chrome Li nux' class='DevSlaveBox success' target="_blank">
779 </a>
780 </td>
781
782 <td class='DevSlaveBox'>
783 <a href='./builders/Google%20Chrome%20Linux%20x64' title='Google Chr ome Linux x64' class='DevSlaveBox success' target="_blank">
784 </a>
785 </td>
786
787 <td class='DevSlaveBox'>
788 <a href='./builders/Google%20Chrome%20Mac' title='Google Chrome Mac' class='DevSlaveBox success' target="_blank">
789 </a>
790 </td>
791
792 <td class='DevSlaveBox'>
793 <a href='./builders/Google%20Chrome%20ChromeOS' title='Google Chrome ChromeOS' class='DevSlaveBox success' target="_blank">
794 </a>
795 </td>
796
797 </tr>
798 </table>
799 </td>
800 </tr>
801
802
803 <tr>
804 <td class='DevRev DevRevCollapse' width="1%">
805 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122173" t arget="_blank">122173</a>
806 </td>
807 <td class='DevName ' width="1%">
808 jam<span style="display:none">ohnoyoudont</span>@chromium.org
809 </td>
810
811 <td class='DevStatus DevStatusCollapse'>
812 <table width="100%">
813 <tr>
814 <td class='DevStatusBox'>
815 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
816 title='Google Chrome Win' class='DevStatusBox notstarted '
817 target="_blank"></a>
818 </td>
819 <td class='DevStatusBox'>
820 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17376", event); return false;'
821 title='Google Chrome Linux ETA: 10s' class='DevStatusBox running TagGoogleChromeLinux17376'
822 target="_blank"></a>
823 </td>
824 <td class='DevStatusBox'>
825 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
826 title='Google Chrome Linux x64' class='DevStatusBox notstarted '
827 target="_blank"></a>
828 </td>
829 <td class='DevStatusBox'>
830 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
831 title='Google Chrome Mac' class='DevStatusBox notstarted '
832 target="_blank"></a>
833 </td>
834 <td class='DevStatusBox'>
835 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25246", event); return false;'
836 title='Google Chrome ChromeOS ETA: 302s' class='DevStatusBox run ning TagGoogleChromeChromeOS25246'
837 target="_blank"></a>
838 </td>
839
840 </tr>
841 </table>
842 </td>
843 </tr>
844
845 <tr>
846 <td colspan="3" class='DevComment '>
847 Update new size of ProfileImpl
848 </td>
849 </tr>
850
851
852
853 <tr class='DevStatusSpacing'>
854 <td>
855 </td>
856 </tr>
857
858 <tr>
859 <td class='DevRev Alt DevRevCollapse' width="1%">
860 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122170" t arget="_blank">122170</a>
861 </td>
862 <td class='DevName Alt' width="1%">
863 jam<span style="display:none">ohnoyoudont</span>@chromium.org
864 </td>
865
866 <td class='DevStatus Alt DevStatusCollapse'>
867 <table width="100%">
868 <tr>
869 <td class='DevStatusBox'>
870 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8907", event); return false;'
871 title='Google Chrome Win ETA: 819s' class='DevStatusBox running TagGoogleChromeWin8907'
872 target="_blank"></a>
873 </td>
874 <td class='DevStatusBox'>
875 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17376", event); return false;'
876 title='Google Chrome Linux ETA: 10s' class='DevStatusBox running TagGoogleChromeLinux17376'
877 target="_blank"></a>
878 </td>
879 <td class='DevStatusBox'>
880 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21680", event); return false;'
881 title='Google Chrome Linux x64 ETA: 3s' class='DevStatusBox runn ing TagGoogleChromeLinuxx6421680'
882 target="_blank"></a>
883 </td>
884 <td class='DevStatusBox'>
885 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
886 title='Google Chrome Mac' class='DevStatusBox notstarted '
887 target="_blank"></a>
888 </td>
889 <td class='DevStatusBox'>
890 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25245", event); return false;'
891 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25245'
892 target="_blank"></a>
893 </td>
894
895 </tr>
896 </table>
897 </td>
898 </tr>
899
900 <tr>
901 <td colspan="3" class='DevComment Alt'>
902 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
903 </td>
904 </tr>
905
906
907
908 <tr class='DevStatusSpacing'>
909 <td>
910 </td>
911 </tr>
912
913 <tr>
914 <td class='DevRev DevRevCollapse' width="1%">
915 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122169" t arget="_blank">122169</a>
916 </td>
917 <td class='DevName ' width="1%">
918 abodenha<span style="display:none">ohnoyoudont</span>@google.com
919 </td>
920
921 <td class='DevStatus DevStatusCollapse'>
922 <table width="100%">
923 <tr>
924 <td class='DevStatusBox'>
925 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8907", event); return false;'
926 title='Google Chrome Win ETA: 819s' class='DevStatusBox running TagGoogleChromeWin8907'
927 target="_blank"></a>
928 </td>
929 <td class='DevStatusBox'>
930 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17376", event); return false;'
931 title='Google Chrome Linux ETA: 10s' class='DevStatusBox running TagGoogleChromeLinux17376'
932 target="_blank"></a>
933 </td>
934 <td class='DevStatusBox'>
935 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21680", event); return false;'
936 title='Google Chrome Linux x64 ETA: 3s' class='DevStatusBox runn ing TagGoogleChromeLinuxx6421680'
937 target="_blank"></a>
938 </td>
939 <td class='DevStatusBox'>
940 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
941 title='Google Chrome Mac' class='DevStatusBox notstarted '
942 target="_blank"></a>
943 </td>
944 <td class='DevStatusBox'>
945 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25244", event); return false;'
946 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25244'
947 target="_blank"></a>
948 </td>
949
950 </tr>
951 </table>
952 </td>
953 </tr>
954
955 <tr>
956 <td colspan="3" class='DevComment '>
957 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
958 </td>
959 </tr>
960
961
962
963 <tr class='DevStatusSpacing'>
964 <td>
965 </td>
966 </tr>
967
968 <tr>
969 <td class='DevRev Alt DevRevCollapse' width="1%">
970 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122168" t arget="_blank">122168</a>
971 </td>
972 <td class='DevName Alt' width="1%">
973 evan<span style="display:none">ohnoyoudont</span>@chromium.org
974 </td>
975
976 <td class='DevStatus Alt DevStatusCollapse'>
977 <table width="100%">
978 <tr>
979 <td class='DevStatusBox'>
980 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8907", event); return false;'
981 title='Google Chrome Win ETA: 819s' class='DevStatusBox running TagGoogleChromeWin8907'
982 target="_blank"></a>
983 </td>
984 <td class='DevStatusBox'>
985 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17376", event); return false;'
986 title='Google Chrome Linux ETA: 10s' class='DevStatusBox running TagGoogleChromeLinux17376'
987 target="_blank"></a>
988 </td>
989 <td class='DevStatusBox'>
990 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21680", event); return false;'
991 title='Google Chrome Linux x64 ETA: 3s' class='DevStatusBox runn ing TagGoogleChromeLinuxx6421680'
992 target="_blank"></a>
993 </td>
994 <td class='DevStatusBox'>
995 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
996 title='Google Chrome Mac' class='DevStatusBox notstarted '
997 target="_blank"></a>
998 </td>
999 <td class='DevStatusBox'>
1000 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25244", event); return false;'
1001 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25244'
1002 target="_blank"></a>
1003 </td>
1004
1005 </tr>
1006 </table>
1007 </td>
1008 </tr>
1009
1010 <tr>
1011 <td colspan="3" class='DevComment Alt'>
1012 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
1013 </td>
1014 </tr>
1015
1016
1017
1018 <tr class='DevStatusSpacing'>
1019 <td>
1020 </td>
1021 </tr>
1022
1023 <tr>
1024 <td class='DevRev DevRevCollapse' width="1%">
1025 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122166" t arget="_blank">122166</a>
1026 </td>
1027 <td class='DevName ' width="1%">
1028 agl<span style="display:none">ohnoyoudont</span>@chromium.org
1029 </td>
1030
1031 <td class='DevStatus DevStatusCollapse'>
1032 <table width="100%">
1033 <tr>
1034 <td class='DevStatusBox'>
1035 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8907", event); return false;'
1036 title='Google Chrome Win ETA: 819s' class='DevStatusBox running TagGoogleChromeWin8907'
1037 target="_blank"></a>
1038 </td>
1039 <td class='DevStatusBox'>
1040 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17376", event); return false;'
1041 title='Google Chrome Linux ETA: 10s' class='DevStatusBox running TagGoogleChromeLinux17376'
1042 target="_blank"></a>
1043 </td>
1044 <td class='DevStatusBox'>
1045 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21680", event); return false;'
1046 title='Google Chrome Linux x64 ETA: 3s' class='DevStatusBox runn ing TagGoogleChromeLinuxx6421680'
1047 target="_blank"></a>
1048 </td>
1049 <td class='DevStatusBox'>
1050 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
1051 title='Google Chrome Mac' class='DevStatusBox notstarted '
1052 target="_blank"></a>
1053 </td>
1054 <td class='DevStatusBox'>
1055 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25244", event); return false;'
1056 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25244'
1057 target="_blank"></a>
1058 </td>
1059
1060 </tr>
1061 </table>
1062 </td>
1063 </tr>
1064
1065 <tr>
1066 <td colspan="3" class='DevComment '>
1067 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/
1068 </td>
1069 </tr>
1070
1071
1072
1073 <tr class='DevStatusSpacing'>
1074 <td>
1075 </td>
1076 </tr>
1077
1078 <tr>
1079 <td class='DevRev Alt DevRevCollapse' width="1%">
1080 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122164" t arget="_blank">122164</a>
1081 </td>
1082 <td class='DevName Alt' width="1%">
1083 jam<span style="display:none">ohnoyoudont</span>@chromium.org
1084 </td>
1085
1086 <td class='DevStatus Alt DevStatusCollapse'>
1087 <table width="100%">
1088 <tr>
1089 <td class='DevStatusBox'>
1090 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8907", event); return false;'
1091 title='Google Chrome Win ETA: 819s' class='DevStatusBox running TagGoogleChromeWin8907'
1092 target="_blank"></a>
1093 </td>
1094 <td class='DevStatusBox'>
1095 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17375", event); return false;'
1096 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17375'
1097 target="_blank"></a>
1098 </td>
1099 <td class='DevStatusBox'>
1100 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21679", event); return false;'
1101 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421679'
1102 target="_blank"></a>
1103 </td>
1104 <td class='DevStatusBox'>
1105 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
1106 title='Google Chrome Mac' class='DevStatusBox notstarted '
1107 target="_blank"></a>
1108 </td>
1109 <td class='DevStatusBox'>
1110 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25244", event); return false;'
1111 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25244'
1112 target="_blank"></a>
1113 </td>
1114
1115 </tr>
1116 </table>
1117 </td>
1118 </tr>
1119
1120 <tr>
1121 <td colspan="3" class='DevComment Alt'>
1122 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
1123 </td>
1124 </tr>
1125
1126
1127
1128 <tr class='DevStatusSpacing'>
1129 <td>
1130 </td>
1131 </tr>
1132
1133 <tr>
1134 <td class='DevRev DevRevCollapse' width="1%">
1135 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122163" t arget="_blank">122163</a>
1136 </td>
1137 <td class='DevName ' width="1%">
1138 sadrul<span style="display:none">ohnoyoudont</span>@chromium.org
1139 </td>
1140
1141 <td class='DevStatus DevStatusCollapse'>
1142 <table width="100%">
1143 <tr>
1144 <td class='DevStatusBox'>
1145 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8907", event); return false;'
1146 title='Google Chrome Win ETA: 819s' class='DevStatusBox running TagGoogleChromeWin8907'
1147 target="_blank"></a>
1148 </td>
1149 <td class='DevStatusBox'>
1150 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17375", event); return false;'
1151 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17375'
1152 target="_blank"></a>
1153 </td>
1154 <td class='DevStatusBox'>
1155 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21679", event); return false;'
1156 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421679'
1157 target="_blank"></a>
1158 </td>
1159 <td class='DevStatusBox'>
1160 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
1161 title='Google Chrome Mac' class='DevStatusBox notstarted '
1162 target="_blank"></a>
1163 </td>
1164 <td class='DevStatusBox'>
1165 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25243", event); return false;'
1166 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25243'
1167 target="_blank"></a>
1168 </td>
1169
1170 </tr>
1171 </table>
1172 </td>
1173 </tr>
1174
1175 <tr>
1176 <td colspan="3" class='DevComment '>
1177 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
1178 </td>
1179 </tr>
1180
1181
1182
1183 <tr class='DevStatusSpacing'>
1184 <td>
1185 </td>
1186 </tr>
1187
1188 <tr>
1189 <td class='DevRev Alt DevRevCollapse' width="1%">
1190 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122162" t arget="_blank">122162</a>
1191 </td>
1192 <td class='DevName Alt' width="1%">
1193 sergeyu<span style="display:none">ohnoyoudont</span>@chromium.org
1194 </td>
1195
1196 <td class='DevStatus Alt DevStatusCollapse'>
1197 <table width="100%">
1198 <tr>
1199 <td class='DevStatusBox'>
1200 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8907", event); return false;'
1201 title='Google Chrome Win ETA: 819s' class='DevStatusBox running TagGoogleChromeWin8907'
1202 target="_blank"></a>
1203 </td>
1204 <td class='DevStatusBox'>
1205 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17375", event); return false;'
1206 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17375'
1207 target="_blank"></a>
1208 </td>
1209 <td class='DevStatusBox'>
1210 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21679", event); return false;'
1211 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421679'
1212 target="_blank"></a>
1213 </td>
1214 <td class='DevStatusBox'>
1215 <a href='#' onclick='showBuildBox("./waterfall", event); return fals e;'
1216 title='Google Chrome Mac' class='DevStatusBox notstarted '
1217 target="_blank"></a>
1218 </td>
1219 <td class='DevStatusBox'>
1220 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25243", event); return false;'
1221 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25243'
1222 target="_blank"></a>
1223 </td>
1224
1225 </tr>
1226 </table>
1227 </td>
1228 </tr>
1229
1230 <tr>
1231 <td colspan="3" class='DevComment Alt'>
1232 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
1233 </td>
1234 </tr>
1235
1236
1237
1238 <tr class='DevStatusSpacing'>
1239 <td>
1240 </td>
1241 </tr>
1242
1243 <tr>
1244 <td class='DevRev DevRevCollapse' width="1%">
1245 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122161" t arget="_blank">122161</a>
1246 </td>
1247 <td class='DevName ' width="1%">
1248 francoisk777<span style="display:none">ohnoyoudont</span>@gmail.com
1249 </td>
1250
1251 <td class='DevStatus DevStatusCollapse'>
1252 <table width="100%">
1253 <tr>
1254 <td class='DevStatusBox'>
1255 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8907", event); return false;'
1256 title='Google Chrome Win ETA: 819s' class='DevStatusBox running TagGoogleChromeWin8907'
1257 target="_blank"></a>
1258 </td>
1259 <td class='DevStatusBox'>
1260 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17375", event); return false;'
1261 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17375'
1262 target="_blank"></a>
1263 </td>
1264 <td class='DevStatusBox'>
1265 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21679", event); return false;'
1266 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421679'
1267 target="_blank"></a>
1268 </td>
1269 <td class='DevStatusBox'>
1270 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Mac&number=6396", event); return false;'
1271 title='Google Chrome Mac ETA: 3581s' class='DevStatusBox running TagGoogleChromeMac6396'
1272 target="_blank"></a>
1273 </td>
1274 <td class='DevStatusBox'>
1275 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25243", event); return false;'
1276 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25243'
1277 target="_blank"></a>
1278 </td>
1279
1280 </tr>
1281 </table>
1282 </td>
1283 </tr>
1284
1285 <tr>
1286 <td colspan="3" class='DevComment '>
1287 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
1288 </td>
1289 </tr>
1290
1291
1292
1293 <tr class='DevStatusSpacing'>
1294 <td>
1295 </td>
1296 </tr>
1297
1298 <tr>
1299 <td class='DevRev Alt DevRevCollapse' width="1%">
1300 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122160" t arget="_blank">122160</a>
1301 </td>
1302 <td class='DevName Alt' width="1%">
1303 wangxianzhu<span style="display:none">ohnoyoudont</span>@chromium.org
1304 </td>
1305
1306 <td class='DevStatus Alt DevStatusCollapse'>
1307 <table width="100%">
1308 <tr>
1309 <td class='DevStatusBox'>
1310 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8907", event); return false;'
1311 title='Google Chrome Win ETA: 819s' class='DevStatusBox running TagGoogleChromeWin8907'
1312 target="_blank"></a>
1313 </td>
1314 <td class='DevStatusBox'>
1315 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17375", event); return false;'
1316 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17375'
1317 target="_blank"></a>
1318 </td>
1319 <td class='DevStatusBox'>
1320 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21679", event); return false;'
1321 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421679'
1322 target="_blank"></a>
1323 </td>
1324 <td class='DevStatusBox'>
1325 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Mac&number=6396", event); return false;'
1326 title='Google Chrome Mac ETA: 3581s' class='DevStatusBox running TagGoogleChromeMac6396'
1327 target="_blank"></a>
1328 </td>
1329 <td class='DevStatusBox'>
1330 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25243", event); return false;'
1331 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25243'
1332 target="_blank"></a>
1333 </td>
1334
1335 </tr>
1336 </table>
1337 </td>
1338 </tr>
1339
1340 <tr>
1341 <td colspan="3" class='DevComment Alt'>
1342 Fix style issues of tools/android<br/><br/>Review URL: http://codereview.c hromium.org/9402017
1343 </td>
1344 </tr>
1345
1346
1347
1348 <tr class='DevStatusSpacing'>
1349 <td>
1350 </td>
1351 </tr>
1352
1353 <tr>
1354 <td class='DevRev DevRevCollapse' width="1%">
1355 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122159" t arget="_blank">122159</a>
1356 </td>
1357 <td class='DevName ' width="1%">
1358 rdsmith<span style="display:none">ohnoyoudont</span>@chromium.org
1359 </td>
1360
1361 <td class='DevStatus DevStatusCollapse'>
1362 <table width="100%">
1363 <tr>
1364 <td class='DevStatusBox'>
1365 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8907", event); return false;'
1366 title='Google Chrome Win ETA: 819s' class='DevStatusBox running TagGoogleChromeWin8907'
1367 target="_blank"></a>
1368 </td>
1369 <td class='DevStatusBox'>
1370 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17375", event); return false;'
1371 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17375'
1372 target="_blank"></a>
1373 </td>
1374 <td class='DevStatusBox'>
1375 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21679", event); return false;'
1376 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421679'
1377 target="_blank"></a>
1378 </td>
1379 <td class='DevStatusBox'>
1380 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Mac&number=6396", event); return false;'
1381 title='Google Chrome Mac ETA: 3581s' class='DevStatusBox running TagGoogleChromeMac6396'
1382 target="_blank"></a>
1383 </td>
1384 <td class='DevStatusBox'>
1385 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25243", event); return false;'
1386 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25243'
1387 target="_blank"></a>
1388 </td>
1389
1390 </tr>
1391 </table>
1392 </td>
1393 </tr>
1394
1395 <tr>
1396 <td colspan="3" class='DevComment '>
1397 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
1398 </td>
1399 </tr>
1400
1401
1402
1403 <tr class='DevStatusSpacing'>
1404 <td>
1405 </td>
1406 </tr>
1407
1408 <tr>
1409 <td class='DevRev Alt DevRevCollapse' width="1%">
1410 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122155" t arget="_blank">122155</a>
1411 </td>
1412 <td class='DevName Alt' width="1%">
1413 chrome-release<span style="display:none">ohnoyoudont</span>@google.com
1414 </td>
1415
1416 <td class='DevStatus Alt DevStatusCollapse'>
1417 <table width="100%">
1418 <tr>
1419 <td class='DevStatusBox'>
1420 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8907", event); return false;'
1421 title='Google Chrome Win ETA: 819s' class='DevStatusBox running TagGoogleChromeWin8907'
1422 target="_blank"></a>
1423 </td>
1424 <td class='DevStatusBox'>
1425 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17375", event); return false;'
1426 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17375'
1427 target="_blank"></a>
1428 </td>
1429 <td class='DevStatusBox'>
1430 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21679", event); return false;'
1431 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421679'
1432 target="_blank"></a>
1433 </td>
1434 <td class='DevStatusBox'>
1435 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Mac&number=6396", event); return false;'
1436 title='Google Chrome Mac ETA: 3581s' class='DevStatusBox running TagGoogleChromeMac6396'
1437 target="_blank"></a>
1438 </td>
1439 <td class='DevStatusBox'>
1440 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25242", event); return false;'
1441 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25242'
1442 target="_blank"></a>
1443 </td>
1444
1445 </tr>
1446 </table>
1447 </td>
1448 </tr>
1449
1450 <tr>
1451 <td colspan="3" class='DevComment Alt'>
1452 Updating trunk VERSION from 1043.0 to 1044.0
1453 </td>
1454 </tr>
1455
1456
1457
1458 <tr class='DevStatusSpacing'>
1459 <td>
1460 </td>
1461 </tr>
1462
1463 <tr>
1464 <td class='DevRev DevRevCollapse' width="1%">
1465 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122151" t arget="_blank">122151</a>
1466 </td>
1467 <td class='DevName ' width="1%">
1468 vollick<span style="display:none">ohnoyoudont</span>@google.com
1469 </td>
1470
1471 <td class='DevStatus DevStatusCollapse'>
1472 <table width="100%">
1473 <tr>
1474 <td class='DevStatusBox'>
1475 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8906", event); return false;'
1476 title='Google Chrome Win build successful' class='DevStatusBox su ccess TagGoogleChromeWin8906'
1477 target="_blank"></a>
1478 </td>
1479 <td class='DevStatusBox'>
1480 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17374", event); return false;'
1481 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17374'
1482 target="_blank"></a>
1483 </td>
1484 <td class='DevStatusBox'>
1485 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21678", event); return false;'
1486 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421678'
1487 target="_blank"></a>
1488 </td>
1489 <td class='DevStatusBox'>
1490 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Mac&number=6396", event); return false;'
1491 title='Google Chrome Mac ETA: 3581s' class='DevStatusBox running TagGoogleChromeMac6396'
1492 target="_blank"></a>
1493 </td>
1494 <td class='DevStatusBox'>
1495 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25241", event); return false;'
1496 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25241'
1497 target="_blank"></a>
1498 </td>
1499
1500 </tr>
1501 </table>
1502 </td>
1503 </tr>
1504
1505 <tr>
1506 <td colspan="3" class='DevComment '>
1507 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
1508 </td>
1509 </tr>
1510
1511
1512
1513 <tr class='DevStatusSpacing'>
1514 <td>
1515 </td>
1516 </tr>
1517
1518 <tr>
1519 <td class='DevRev Alt DevRevCollapse' width="1%">
1520 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122149" t arget="_blank">122149</a>
1521 </td>
1522 <td class='DevName Alt' width="1%">
1523 noelallen<span style="display:none">ohnoyoudont</span>@chromium.org
1524 </td>
1525
1526 <td class='DevStatus Alt DevStatusCollapse'>
1527 <table width="100%">
1528 <tr>
1529 <td class='DevStatusBox'>
1530 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8906", event); return false;'
1531 title='Google Chrome Win build successful' class='DevStatusBox su ccess TagGoogleChromeWin8906'
1532 target="_blank"></a>
1533 </td>
1534 <td class='DevStatusBox'>
1535 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17374", event); return false;'
1536 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17374'
1537 target="_blank"></a>
1538 </td>
1539 <td class='DevStatusBox'>
1540 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21677", event); return false;'
1541 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421677'
1542 target="_blank"></a>
1543 </td>
1544 <td class='DevStatusBox'>
1545 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Mac&number=6396", event); return false;'
1546 title='Google Chrome Mac ETA: 3581s' class='DevStatusBox running TagGoogleChromeMac6396'
1547 target="_blank"></a>
1548 </td>
1549 <td class='DevStatusBox'>
1550 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25240", event); return false;'
1551 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25240'
1552 target="_blank"></a>
1553 </td>
1554
1555 </tr>
1556 </table>
1557 </td>
1558 </tr>
1559
1560 <tr>
1561 <td colspan="3" class='DevComment Alt'>
1562 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
1563 </td>
1564 </tr>
1565
1566
1567
1568 <tr class='DevStatusSpacing'>
1569 <td>
1570 </td>
1571 </tr>
1572
1573 <tr>
1574 <td class='DevRev DevRevCollapse' width="1%">
1575 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122148" t arget="_blank">122148</a>
1576 </td>
1577 <td class='DevName ' width="1%">
1578 sergeyu<span style="display:none">ohnoyoudont</span>@chromium.org
1579 </td>
1580
1581 <td class='DevStatus DevStatusCollapse'>
1582 <table width="100%">
1583 <tr>
1584 <td class='DevStatusBox'>
1585 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8906", event); return false;'
1586 title='Google Chrome Win build successful' class='DevStatusBox su ccess TagGoogleChromeWin8906'
1587 target="_blank"></a>
1588 </td>
1589 <td class='DevStatusBox'>
1590 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17373", event); return false;'
1591 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17373'
1592 target="_blank"></a>
1593 </td>
1594 <td class='DevStatusBox'>
1595 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21677", event); return false;'
1596 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421677'
1597 target="_blank"></a>
1598 </td>
1599 <td class='DevStatusBox'>
1600 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Mac&number=6396", event); return false;'
1601 title='Google Chrome Mac ETA: 3581s' class='DevStatusBox running TagGoogleChromeMac6396'
1602 target="_blank"></a>
1603 </td>
1604 <td class='DevStatusBox'>
1605 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25240", event); return false;'
1606 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25240'
1607 target="_blank"></a>
1608 </td>
1609
1610 </tr>
1611 </table>
1612 </td>
1613 </tr>
1614
1615 <tr>
1616 <td colspan="3" class='DevComment '>
1617 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
1618 </td>
1619 </tr>
1620
1621
1622
1623 <tr class='DevStatusSpacing'>
1624 <td>
1625 </td>
1626 </tr>
1627
1628 <tr>
1629 <td class='DevRev Alt DevRevCollapse' width="1%">
1630 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122147" t arget="_blank">122147</a>
1631 </td>
1632 <td class='DevName Alt' width="1%">
1633 zea<span style="display:none">ohnoyoudont</span>@chromium.org
1634 </td>
1635
1636 <td class='DevStatus Alt DevStatusCollapse'>
1637 <table width="100%">
1638 <tr>
1639 <td class='DevStatusBox'>
1640 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8906", event); return false;'
1641 title='Google Chrome Win build successful' class='DevStatusBox su ccess TagGoogleChromeWin8906'
1642 target="_blank"></a>
1643 </td>
1644 <td class='DevStatusBox'>
1645 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17373", event); return false;'
1646 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17373'
1647 target="_blank"></a>
1648 </td>
1649 <td class='DevStatusBox'>
1650 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21677", event); return false;'
1651 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421677'
1652 target="_blank"></a>
1653 </td>
1654 <td class='DevStatusBox'>
1655 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Mac&number=6396", event); return false;'
1656 title='Google Chrome Mac ETA: 3581s' class='DevStatusBox running TagGoogleChromeMac6396'
1657 target="_blank"></a>
1658 </td>
1659 <td class='DevStatusBox'>
1660 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25240", event); return false;'
1661 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25240'
1662 target="_blank"></a>
1663 </td>
1664
1665 </tr>
1666 </table>
1667 </td>
1668 </tr>
1669
1670 <tr>
1671 <td colspan="3" class='DevComment Alt'>
1672 [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
1673 </td>
1674 </tr>
1675
1676
1677
1678 <tr class='DevStatusSpacing'>
1679 <td>
1680 </td>
1681 </tr>
1682
1683 <tr>
1684 <td class='DevRev DevRevCollapse' width="1%">
1685 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122146" t arget="_blank">122146</a>
1686 </td>
1687 <td class='DevName ' width="1%">
1688 tommi<span style="display:none">ohnoyoudont</span>@chromium.org
1689 </td>
1690
1691 <td class='DevStatus DevStatusCollapse'>
1692 <table width="100%">
1693 <tr>
1694 <td class='DevStatusBox'>
1695 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8906", event); return false;'
1696 title='Google Chrome Win build successful' class='DevStatusBox su ccess TagGoogleChromeWin8906'
1697 target="_blank"></a>
1698 </td>
1699 <td class='DevStatusBox'>
1700 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17373", event); return false;'
1701 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17373'
1702 target="_blank"></a>
1703 </td>
1704 <td class='DevStatusBox'>
1705 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21677", event); return false;'
1706 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421677'
1707 target="_blank"></a>
1708 </td>
1709 <td class='DevStatusBox'>
1710 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Mac&number=6396", event); return false;'
1711 title='Google Chrome Mac ETA: 3581s' class='DevStatusBox running TagGoogleChromeMac6396'
1712 target="_blank"></a>
1713 </td>
1714 <td class='DevStatusBox'>
1715 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25240", event); return false;'
1716 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25240'
1717 target="_blank"></a>
1718 </td>
1719
1720 </tr>
1721 </table>
1722 </td>
1723 </tr>
1724
1725 <tr>
1726 <td colspan="3" class='DevComment '>
1727 Update DCHECKs in AlsaPcmOutputStream to account for NULL message loop.<br /><br/>TBR=xians<br/><br/>Review URL: https://chromiumcodereview.appspot.com/940 3027
1728 </td>
1729 </tr>
1730
1731
1732
1733 <tr class='DevStatusSpacing'>
1734 <td>
1735 </td>
1736 </tr>
1737
1738 <tr>
1739 <td class='DevRev Alt DevRevCollapse' width="1%">
1740 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122145" t arget="_blank">122145</a>
1741 </td>
1742 <td class='DevName Alt' width="1%">
1743 bartfab<span style="display:none">ohnoyoudont</span>@google.com
1744 </td>
1745
1746 <td class='DevStatus Alt DevStatusCollapse'>
1747 <table width="100%">
1748 <tr>
1749 <td class='DevStatusBox'>
1750 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8906", event); return false;'
1751 title='Google Chrome Win build successful' class='DevStatusBox su ccess TagGoogleChromeWin8906'
1752 target="_blank"></a>
1753 </td>
1754 <td class='DevStatusBox'>
1755 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17373", event); return false;'
1756 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17373'
1757 target="_blank"></a>
1758 </td>
1759 <td class='DevStatusBox'>
1760 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21677", event); return false;'
1761 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421677'
1762 target="_blank"></a>
1763 </td>
1764 <td class='DevStatusBox'>
1765 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Mac&number=6396", event); return false;'
1766 title='Google Chrome Mac ETA: 3581s' class='DevStatusBox running TagGoogleChromeMac6396'
1767 target="_blank"></a>
1768 </td>
1769 <td class='DevStatusBox'>
1770 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25239", event); return false;'
1771 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25239'
1772 target="_blank"></a>
1773 </td>
1774
1775 </tr>
1776 </table>
1777 </td>
1778 </tr>
1779
1780 <tr>
1781 <td colspan="3" class='DevComment Alt'>
1782 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
1783 </td>
1784 </tr>
1785
1786
1787
1788 <tr class='DevStatusSpacing'>
1789 <td>
1790 </td>
1791 </tr>
1792
1793 <tr>
1794 <td class='DevRev DevRevCollapse' width="1%">
1795 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122144" t arget="_blank">122144</a>
1796 </td>
1797 <td class='DevName ' width="1%">
1798 jhawkins<span style="display:none">ohnoyoudont</span>@chromium.org
1799 </td>
1800
1801 <td class='DevStatus DevStatusCollapse'>
1802 <table width="100%">
1803 <tr>
1804 <td class='DevStatusBox'>
1805 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8906", event); return false;'
1806 title='Google Chrome Win build successful' class='DevStatusBox su ccess TagGoogleChromeWin8906'
1807 target="_blank"></a>
1808 </td>
1809 <td class='DevStatusBox'>
1810 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17373", event); return false;'
1811 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17373'
1812 target="_blank"></a>
1813 </td>
1814 <td class='DevStatusBox'>
1815 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21677", event); return false;'
1816 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421677'
1817 target="_blank"></a>
1818 </td>
1819 <td class='DevStatusBox'>
1820 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Mac&number=6396", event); return false;'
1821 title='Google Chrome Mac ETA: 3581s' class='DevStatusBox running TagGoogleChromeMac6396'
1822 target="_blank"></a>
1823 </td>
1824 <td class='DevStatusBox'>
1825 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25239", event); return false;'
1826 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25239'
1827 target="_blank"></a>
1828 </td>
1829
1830 </tr>
1831 </table>
1832 </td>
1833 </tr>
1834
1835 <tr>
1836 <td colspan="3" class='DevComment '>
1837 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
1838 </td>
1839 </tr>
1840
1841
1842
1843 <tr class='DevStatusSpacing'>
1844 <td>
1845 </td>
1846 </tr>
1847
1848 <tr>
1849 <td class='DevRev Alt DevRevCollapse' width="1%">
1850 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122142" t arget="_blank">122142</a>
1851 </td>
1852 <td class='DevName Alt' width="1%">
1853 keybuk<span style="display:none">ohnoyoudont</span>@chromium.org
1854 </td>
1855
1856 <td class='DevStatus Alt DevStatusCollapse'>
1857 <table width="100%">
1858 <tr>
1859 <td class='DevStatusBox'>
1860 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8906", event); return false;'
1861 title='Google Chrome Win build successful' class='DevStatusBox su ccess TagGoogleChromeWin8906'
1862 target="_blank"></a>
1863 </td>
1864 <td class='DevStatusBox'>
1865 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17373", event); return false;'
1866 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17373'
1867 target="_blank"></a>
1868 </td>
1869 <td class='DevStatusBox'>
1870 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21677", event); return false;'
1871 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421677'
1872 target="_blank"></a>
1873 </td>
1874 <td class='DevStatusBox'>
1875 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Mac&number=6396", event); return false;'
1876 title='Google Chrome Mac ETA: 3581s' class='DevStatusBox running TagGoogleChromeMac6396'
1877 target="_blank"></a>
1878 </td>
1879 <td class='DevStatusBox'>
1880 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25239", event); return false;'
1881 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25239'
1882 target="_blank"></a>
1883 </td>
1884
1885 </tr>
1886 </table>
1887 </td>
1888 </tr>
1889
1890 <tr>
1891 <td colspan="3" class='DevComment Alt'>
1892 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
1893 </td>
1894 </tr>
1895
1896
1897
1898 <tr class='DevStatusSpacing'>
1899 <td>
1900 </td>
1901 </tr>
1902
1903 <tr>
1904 <td class='DevRev DevRevCollapse' width="1%">
1905 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122141" t arget="_blank">122141</a>
1906 </td>
1907 <td class='DevName ' width="1%">
1908 dbeam<span style="display:none">ohnoyoudont</span>@chromium.org
1909 </td>
1910
1911 <td class='DevStatus DevStatusCollapse'>
1912 <table width="100%">
1913 <tr>
1914 <td class='DevStatusBox'>
1915 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8906", event); return false;'
1916 title='Google Chrome Win build successful' class='DevStatusBox su ccess TagGoogleChromeWin8906'
1917 target="_blank"></a>
1918 </td>
1919 <td class='DevStatusBox'>
1920 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17373", event); return false;'
1921 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17373'
1922 target="_blank"></a>
1923 </td>
1924 <td class='DevStatusBox'>
1925 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21677", event); return false;'
1926 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421677'
1927 target="_blank"></a>
1928 </td>
1929 <td class='DevStatusBox'>
1930 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Mac&number=6396", event); return false;'
1931 title='Google Chrome Mac ETA: 3581s' class='DevStatusBox running TagGoogleChromeMac6396'
1932 target="_blank"></a>
1933 </td>
1934 <td class='DevStatusBox'>
1935 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25238", event); return false;'
1936 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25238'
1937 target="_blank"></a>
1938 </td>
1939
1940 </tr>
1941 </table>
1942 </td>
1943 </tr>
1944
1945 <tr>
1946 <td colspan="3" class='DevComment '>
1947 [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
1948 </td>
1949 </tr>
1950
1951
1952
1953 <tr class='DevStatusSpacing'>
1954 <td>
1955 </td>
1956 </tr>
1957
1958 <tr>
1959 <td class='DevRev Alt DevRevCollapse' width="1%">
1960 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122140" t arget="_blank">122140</a>
1961 </td>
1962 <td class='DevName Alt' width="1%">
1963 tdresser<span style="display:none">ohnoyoudont</span>@chromium.org
1964 </td>
1965
1966 <td class='DevStatus Alt DevStatusCollapse'>
1967 <table width="100%">
1968 <tr>
1969 <td class='DevStatusBox'>
1970 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8906", event); return false;'
1971 title='Google Chrome Win build successful' class='DevStatusBox su ccess TagGoogleChromeWin8906'
1972 target="_blank"></a>
1973 </td>
1974 <td class='DevStatusBox'>
1975 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17373", event); return false;'
1976 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17373'
1977 target="_blank"></a>
1978 </td>
1979 <td class='DevStatusBox'>
1980 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21677", event); return false;'
1981 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421677'
1982 target="_blank"></a>
1983 </td>
1984 <td class='DevStatusBox'>
1985 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Mac&number=6396", event); return false;'
1986 title='Google Chrome Mac ETA: 3581s' class='DevStatusBox running TagGoogleChromeMac6396'
1987 target="_blank"></a>
1988 </td>
1989 <td class='DevStatusBox'>
1990 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25238", event); return false;'
1991 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25238'
1992 target="_blank"></a>
1993 </td>
1994
1995 </tr>
1996 </table>
1997 </td>
1998 </tr>
1999
2000 <tr>
2001 <td colspan="3" class='DevComment Alt'>
2002 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
2003 </td>
2004 </tr>
2005
2006
2007
2008 <tr class='DevStatusSpacing'>
2009 <td>
2010 </td>
2011 </tr>
2012
2013 <tr>
2014 <td class='DevRev DevRevCollapse' width="1%">
2015 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122138" t arget="_blank">122138</a>
2016 </td>
2017 <td class='DevName ' width="1%">
2018 zea<span style="display:none">ohnoyoudont</span>@chromium.org
2019 </td>
2020
2021 <td class='DevStatus DevStatusCollapse'>
2022 <table width="100%">
2023 <tr>
2024 <td class='DevStatusBox'>
2025 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8906", event); return false;'
2026 title='Google Chrome Win build successful' class='DevStatusBox su ccess TagGoogleChromeWin8906'
2027 target="_blank"></a>
2028 </td>
2029 <td class='DevStatusBox'>
2030 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17372", event); return false;'
2031 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17372'
2032 target="_blank"></a>
2033 </td>
2034 <td class='DevStatusBox'>
2035 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21676", event); return false;'
2036 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421676'
2037 target="_blank"></a>
2038 </td>
2039 <td class='DevStatusBox'>
2040 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Mac&number=6396", event); return false;'
2041 title='Google Chrome Mac ETA: 3581s' class='DevStatusBox running TagGoogleChromeMac6396'
2042 target="_blank"></a>
2043 </td>
2044 <td class='DevStatusBox'>
2045 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25237", event); return false;'
2046 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25237'
2047 target="_blank"></a>
2048 </td>
2049
2050 </tr>
2051 </table>
2052 </td>
2053 </tr>
2054
2055 <tr>
2056 <td colspan="3" class='DevComment '>
2057 [Sync] Fix bug preventing chrome://sessions from working.<br/><br/>R=tim@c hromium.org<br/>BUG=113892<br/>TEST=:-(<br/><br/><br/>Review URL: http://coderev iew.chromium.org/9380048
2058 </td>
2059 </tr>
2060
2061
2062
2063 <tr class='DevStatusSpacing'>
2064 <td>
2065 </td>
2066 </tr>
2067
2068 <tr>
2069 <td class='DevRev Alt DevRevCollapse' width="1%">
2070 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122137" t arget="_blank">122137</a>
2071 </td>
2072 <td class='DevName Alt' width="1%">
2073 evan<span style="display:none">ohnoyoudont</span>@chromium.org
2074 </td>
2075
2076 <td class='DevStatus Alt DevStatusCollapse'>
2077 <table width="100%">
2078 <tr>
2079 <td class='DevStatusBox'>
2080 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8906", event); return false;'
2081 title='Google Chrome Win build successful' class='DevStatusBox su ccess TagGoogleChromeWin8906'
2082 target="_blank"></a>
2083 </td>
2084 <td class='DevStatusBox'>
2085 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17372", event); return false;'
2086 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17372'
2087 target="_blank"></a>
2088 </td>
2089 <td class='DevStatusBox'>
2090 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21676", event); return false;'
2091 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421676'
2092 target="_blank"></a>
2093 </td>
2094 <td class='DevStatusBox'>
2095 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Mac&number=6396", event); return false;'
2096 title='Google Chrome Mac ETA: 3581s' class='DevStatusBox running TagGoogleChromeMac6396'
2097 target="_blank"></a>
2098 </td>
2099 <td class='DevStatusBox'>
2100 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25236", event); return false;'
2101 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25236'
2102 target="_blank"></a>
2103 </td>
2104
2105 </tr>
2106 </table>
2107 </td>
2108 </tr>
2109
2110 <tr>
2111 <td colspan="3" class='DevComment Alt'>
2112 Flakiness cleanup: disable flaky tests under chrome/<br/><br/>BUG=84299,99 469,90557,109292,38497,45243,84854,59785,59783,59784,100567,62777,60426<br/>TBR= thakis<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9406017
2113 </td>
2114 </tr>
2115
2116
2117
2118 <tr class='DevStatusSpacing'>
2119 <td>
2120 </td>
2121 </tr>
2122
2123 <tr>
2124 <td class='DevRev DevRevCollapse' width="1%">
2125 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122136" t arget="_blank">122136</a>
2126 </td>
2127 <td class='DevName ' width="1%">
2128 tommi<span style="display:none">ohnoyoudont</span>@chromium.org
2129 </td>
2130
2131 <td class='DevStatus DevStatusCollapse'>
2132 <table width="100%">
2133 <tr>
2134 <td class='DevStatusBox'>
2135 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Win&number=8905", event); return false;'
2136 title='Google Chrome Win build successful' class='DevStatusBox su ccess TagGoogleChromeWin8905'
2137 target="_blank"></a>
2138 </td>
2139 <td class='DevStatusBox'>
2140 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux&number=17371", event); return false;'
2141 title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17371'
2142 target="_blank"></a>
2143 </td>
2144 <td class='DevStatusBox'>
2145 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Linux%20x64&number=21675", event); return false;'
2146 title='Google Chrome Linux x64 build successful' class='DevStatus Box success TagGoogleChromeLinuxx6421675'
2147 target="_blank"></a>
2148 </td>
2149 <td class='DevStatusBox'>
2150 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20Mac&number=6396", event); return false;'
2151 title='Google Chrome Mac ETA: 3581s' class='DevStatusBox running TagGoogleChromeMac6396'
2152 target="_blank"></a>
2153 </td>
2154 <td class='DevStatusBox'>
2155 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch rome%20ChromeOS&number=25236", event); return false;'
2156 title='Google Chrome ChromeOS build successful' class='DevStatusB ox success TagGoogleChromeChromeOS25236'
2157 target="_blank"></a>
2158 </td>
2159
2160 </tr>
2161 </table>
2162 </td>
2163 </tr>
2164
2165 <tr>
2166 <td colspan="3" class='DevComment '>
2167 Refactoring TestMediaStreamClient<br/><br/>As part of a major effor to add LayoutTest capabilities to the WebRTC feature, I need to move WebUserMediaClien tMock from WebKit/Tools/DumpRenderTree/chromium/ to WebKit/Source/WebKit/chromiu m/. This makes the class unable to inherit from MediaStreamUtil, and fixing that is what this patch is about. I am moving functionality from WebUserMediaClientM ock to TestMediaStreamClient, which is a better place for it.<br/><br/>This is p atch #1 of 3 (chromium - webkit - chromium)<br/><br/>BUG=<br/>TEST=<br/><br/>Rev iew URL: https://chromiumcodereview.appspot.com/9380009<br/>Patch from Tommy Wid enflycht &lt;tommyw@google.com&gt;.
2168 </td>
2169 </tr>
2170
2171
2172
2173 <tr class='DevStatusSpacing'>
2174 <td>
2175 </td>
2176 </tr>
2177
2178 </table>
2179 </div>
2180
2181
2182 <div id="divBox" onmouseout="if (checkMouseLeave(this, event)) this.style.displa y = 'None'" class="BuildWaterfall">
2183 </div>
2184
2185
2186 <iframe id="frameBox" style="display: none;"></iframe>
2187
2188 <script type="text/javascript">
2189 // replace 'onload="updateDiv(event);" with this, as iframe doesn't have onload event in xhtml
2190 window.addEventListener("load", function() {
2191 document.getElementById('frameBox').onload = function(event) {
2192 updateDiv(event);
2193 };
2194 }, false);
2195 </script>
2196
2197 </div><div class="footer" style="clear:both">
2198 <hr/>
2199 [ <a class='collapse' href='#' OnClick='collapse(); return false;'>collapse</a >
2200 <a class='uncollapse' href='#' OnClick='uncollapse(); return false;'>un-collap se</a>
2201 <a class='merge' href="#" OnClick="merge(); return false;">merge</a>
2202 <a class='unmerge' style='display: none' href="#" OnClick="unmerge(); return f alse;">un-merge</a> ]
2203 <p>Debug info: {'revision_final': 25, 'builds_scanned': 200, 'source_all': 25, 'source_len': 25, 'last_revision': u'122136', 'from_cache': 0, 'added_blocks': 77, 'load_time': 1.2694189548492432}</p>
2204 </div>
2205 </body>
2206 </html>
OLDNEW
« no previous file with comments | « handler.py ('k') | tests/test_console_merger/chromium_chromiumos_console_input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698