OLD | NEW |
| (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: </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 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 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=122850" t
arget="_blank">122850</a> | |
806 </td> | |
807 <td class='DevName ' width="1%"> | |
808 jamesr<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("./waterfall", event); return fals
e;' | |
821 title='Google Chrome Linux' class='DevStatusBox notstarted ' | |
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("./waterfall", event); return fals
e;' | |
836 title='Google Chrome ChromeOS' class='DevStatusBox notstarted ' | |
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 WebKit roll 108328:108357<br/><br/>TBR=yutak@chromium.org<br/><br/>Review
URL: https://chromiumcodereview.appspot.com/9433008 | |
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=122849" t
arget="_blank">122849</a> | |
861 </td> | |
862 <td class='DevName Alt' width="1%"> | |
863 mnissler<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("./waterfall", event); return fals
e;' | |
871 title='Google Chrome Win' class='DevStatusBox notstarted ' | |
872 target="_blank"></a> | |
873 </td> | |
874 <td class='DevStatusBox'> | |
875 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
876 title='Google Chrome Linux' class='DevStatusBox notstarted ' | |
877 target="_blank"></a> | |
878 </td> | |
879 <td class='DevStatusBox'> | |
880 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
881 title='Google Chrome Linux x64' class='DevStatusBox notstarted ' | |
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("./waterfall", event); return fals
e;' | |
891 title='Google Chrome ChromeOS' class='DevStatusBox notstarted ' | |
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 Update state on creating NativeComboboxWrapper.<br/><br/>Replace inconsist
ent and incomplete state initialization code with<br/>explicit Update calls to t
he wrapper after initiliazation. This fixes<br/>the issue with views comboboxes
not being initialized correctly in case<br/>the state was set up before the comb
obox was added to the view<br/>hierarchy.<br/><br/>BUG=chromium-os:26633<br/>TES
T=EAP method dropdown is initialized correctly for policy-pushed networks on Chr
ome OS.<br/><br/><br/>Review URL: http://codereview.chromium.org/9395079 | |
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=122848" t
arget="_blank">122848</a> | |
916 </td> | |
917 <td class='DevName ' width="1%"> | |
918 mihaip<span style="display:none">ohnoyoudont</span>@chromium.org | |
919 </td> | |
920 | |
921 <td class='DevStatus DevStatusCollapse'> | |
922 <table width="100%"> | |
923 <tr> | |
924 <td class='DevStatusBox'> | |
925 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
926 title='Google Chrome Win' class='DevStatusBox notstarted ' | |
927 target="_blank"></a> | |
928 </td> | |
929 <td class='DevStatusBox'> | |
930 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17557", event); return false;' | |
931 title='Google Chrome Linux ETA: 550s' class='DevStatusBox runnin
g TagGoogleChromeLinux17557' | |
932 target="_blank"></a> | |
933 </td> | |
934 <td class='DevStatusBox'> | |
935 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
936 title='Google Chrome Linux x64' class='DevStatusBox notstarted ' | |
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=25502", event); return false;' | |
946 title='Google Chrome ChromeOS ETA: 187s' class='DevStatusBox run
ning TagGoogleChromeChromeOS25502' | |
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 Allow app launch URLs to be localized.<br/><br/>BUG=85034<br/>R=jstritar@c
hromium.org<br/><br/><br/>Review URL: http://codereview.chromium.org/9421010 | |
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=122847" t
arget="_blank">122847</a> | |
971 </td> | |
972 <td class='DevName Alt' width="1%"> | |
973 tdresser<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("./waterfall", event); return fals
e;' | |
981 title='Google Chrome Win' class='DevStatusBox notstarted ' | |
982 target="_blank"></a> | |
983 </td> | |
984 <td class='DevStatusBox'> | |
985 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17557", event); return false;' | |
986 title='Google Chrome Linux ETA: 550s' class='DevStatusBox runnin
g TagGoogleChromeLinux17557' | |
987 target="_blank"></a> | |
988 </td> | |
989 <td class='DevStatusBox'> | |
990 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
991 title='Google Chrome Linux x64' class='DevStatusBox notstarted ' | |
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=25502", event); return false;' | |
1001 title='Google Chrome ChromeOS ETA: 187s' class='DevStatusBox run
ning TagGoogleChromeChromeOS25502' | |
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 Gesture Recognizer fires Long Press Event<br/><br/>When a long press occur
s, a scroll gesture is initiated. All scroll events<br/>in this gesture will hav
e the EF_DRAGGING flag set.<br/><br/>This will allow long press to be used to st
art a drag and drop action.<br/><br/>BUG=113220<br/>TEST=GestureRecognizerTest.G
estureEventDragDrop<br/><br/>Review URL: http://codereview.chromium.org/9407011 | |
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=122846" t
arget="_blank">122846</a> | |
1026 </td> | |
1027 <td class='DevName ' width="1%"> | |
1028 pkasting<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("./waterfall", event); return fals
e;' | |
1036 title='Google Chrome Win' class='DevStatusBox notstarted ' | |
1037 target="_blank"></a> | |
1038 </td> | |
1039 <td class='DevStatusBox'> | |
1040 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17557", event); return false;' | |
1041 title='Google Chrome Linux ETA: 550s' class='DevStatusBox runnin
g TagGoogleChromeLinux17557' | |
1042 target="_blank"></a> | |
1043 </td> | |
1044 <td class='DevStatusBox'> | |
1045 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1046 title='Google Chrome Linux x64' class='DevStatusBox notstarted ' | |
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=25502", event); return false;' | |
1056 title='Google Chrome ChromeOS ETA: 187s' class='DevStatusBox run
ning TagGoogleChromeChromeOS25502' | |
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 Revert 122457 - Disable OmniboxApiTest.Basic on ChromiumOS. The offe
nding patch was reverted.<br/><br/>BUG=114721<br/>TBR=creis<br/><br/>Review URL:
https://chromiumcodereview.appspot.com/9413037<br/><br/>TBR=eroman@chromium.org
<br/>Review URL: https://chromiumcodereview.appspot.com/9431004 | |
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=122845" t
arget="_blank">122845</a> | |
1081 </td> | |
1082 <td class='DevName Alt' width="1%"> | |
1083 ananta<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("./waterfall", event); return fals
e;' | |
1091 title='Google Chrome Win' class='DevStatusBox notstarted ' | |
1092 target="_blank"></a> | |
1093 </td> | |
1094 <td class='DevStatusBox'> | |
1095 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17557", event); return false;' | |
1096 title='Google Chrome Linux ETA: 550s' class='DevStatusBox runnin
g TagGoogleChromeLinux17557' | |
1097 target="_blank"></a> | |
1098 </td> | |
1099 <td class='DevStatusBox'> | |
1100 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1101 title='Google Chrome Linux x64' class='DevStatusBox notstarted ' | |
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=25502", event); return false;' | |
1111 title='Google Chrome ChromeOS ETA: 187s' class='DevStatusBox run
ning TagGoogleChromeChromeOS25502' | |
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 Optimize the DXVA video decode accelerator on Windows by copying the decod
ed video directly to ANGLE.<br/>We still have the old code of using a RGB based
Direct 3D surface for H/W adapters which don't support<br/>format conversion
.<br/><br/>The ANGLE based optimization code in this CL was picked up from AlPat
ricks original patch here.<br/>http://codereview.chromium.org/9108035/<br/><br/>
BUG=none<br/>TEST=The dxva_video_decode_accelerator_unittest should perform bett
er with this change.<br/>Review URL: https://chromiumcodereview.appspot.com/9417
038 | |
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=122844" t
arget="_blank">122844</a> | |
1136 </td> | |
1137 <td class='DevName ' width="1%"> | |
1138 elijahtaylor<span style="display:none">ohnoyoudont</span>@google.com | |
1139 </td> | |
1140 | |
1141 <td class='DevStatus DevStatusCollapse'> | |
1142 <table width="100%"> | |
1143 <tr> | |
1144 <td class='DevStatusBox'> | |
1145 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1146 title='Google Chrome Win' class='DevStatusBox notstarted ' | |
1147 target="_blank"></a> | |
1148 </td> | |
1149 <td class='DevStatusBox'> | |
1150 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17557", event); return false;' | |
1151 title='Google Chrome Linux ETA: 550s' class='DevStatusBox runnin
g TagGoogleChromeLinux17557' | |
1152 target="_blank"></a> | |
1153 </td> | |
1154 <td class='DevStatusBox'> | |
1155 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21864", event); return false;' | |
1156 title='Google Chrome Linux x64 ETA: 2s' class='DevStatusBox runn
ing TagGoogleChromeLinuxx6421864' | |
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=25502", event); return false;' | |
1166 title='Google Chrome ChromeOS ETA: 187s' class='DevStatusBox run
ning TagGoogleChromeChromeOS25502' | |
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 Make nacl_sdk oshelpers rm use glob to match patterns.<br/>Also fix rm com
mand for directories (would only delete one directory previously, and would retu
rn non-zero).<br/><br/>This change only affects native_client_sdk<br/><br/>BUG=n
one<br/>TEST=trybots<br/>Review URL: https://chromiumcodereview.appspot.com/9420
035 | |
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=122843" t
arget="_blank">122843</a> | |
1191 </td> | |
1192 <td class='DevName Alt' width="1%"> | |
1193 benjhayden<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("./waterfall", event); return fals
e;' | |
1201 title='Google Chrome Win' class='DevStatusBox notstarted ' | |
1202 target="_blank"></a> | |
1203 </td> | |
1204 <td class='DevStatusBox'> | |
1205 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17557", event); return false;' | |
1206 title='Google Chrome Linux ETA: 550s' class='DevStatusBox runnin
g TagGoogleChromeLinux17557' | |
1207 target="_blank"></a> | |
1208 </td> | |
1209 <td class='DevStatusBox'> | |
1210 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21864", event); return false;' | |
1211 title='Google Chrome Linux x64 ETA: 2s' class='DevStatusBox runn
ing TagGoogleChromeLinuxx6421864' | |
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=25501", event); return false;' | |
1221 title='Google Chrome ChromeOS build successful' class='DevStatusB
ox success TagGoogleChromeChromeOS25501' | |
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 DownloadItem::SetIsPersisted() and IsPersisted() will facilitate merging D
bHandle with Id.<br/><br/>This is another step towards removing Set/GetDbHandle(
) in favor of GetId(). For now, this is a parallel mechanism for GetDbHandle() &
gt; kUninitializedHandle. There are two ways to do everything.<br/><br/><br/>Rev
iew URL: http://codereview.chromium.org/9358066 | |
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=122840" t
arget="_blank">122840</a> | |
1246 </td> | |
1247 <td class='DevName ' width="1%"> | |
1248 zmo<span style="display:none">ohnoyoudont</span>@chromium.org | |
1249 </td> | |
1250 | |
1251 <td class='DevStatus DevStatusCollapse'> | |
1252 <table width="100%"> | |
1253 <tr> | |
1254 <td class='DevStatusBox'> | |
1255 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1256 title='Google Chrome Win' class='DevStatusBox notstarted ' | |
1257 target="_blank"></a> | |
1258 </td> | |
1259 <td class='DevStatusBox'> | |
1260 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17556", event); return false;' | |
1261 title='Google Chrome Linux build successful' class='DevStatusBox
success TagGoogleChromeLinux17556' | |
1262 target="_blank"></a> | |
1263 </td> | |
1264 <td class='DevStatusBox'> | |
1265 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21864", event); return false;' | |
1266 title='Google Chrome Linux x64 ETA: 2s' class='DevStatusBox runn
ing TagGoogleChromeLinuxx6421864' | |
1267 target="_blank"></a> | |
1268 </td> | |
1269 <td class='DevStatusBox'> | |
1270 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1271 title='Google Chrome Mac' class='DevStatusBox notstarted ' | |
1272 target="_blank"></a> | |
1273 </td> | |
1274 <td class='DevStatusBox'> | |
1275 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20ChromeOS&number=25500", event); return false;' | |
1276 title='Google Chrome ChromeOS build successful' class='DevStatusB
ox success TagGoogleChromeChromeOS25500' | |
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 Mark conformance_textures_tex_image_and_sub_image_2d_with_video as TIMEOUT
on Linux NVIDIA Debug bots.<br/><br/>BUG=115122<br/>TEST=content_unittests, gpu
bots<br/>TBR=kbr<br/>Review URL: https://chromiumcodereview.appspot.com/9433004 | |
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=122839" t
arget="_blank">122839</a> | |
1301 </td> | |
1302 <td class='DevName Alt' width="1%"> | |
1303 thakis<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("./waterfall", event); return fals
e;' | |
1311 title='Google Chrome Win' class='DevStatusBox notstarted ' | |
1312 target="_blank"></a> | |
1313 </td> | |
1314 <td class='DevStatusBox'> | |
1315 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17556", event); return false;' | |
1316 title='Google Chrome Linux build successful' class='DevStatusBox
success TagGoogleChromeLinux17556' | |
1317 target="_blank"></a> | |
1318 </td> | |
1319 <td class='DevStatusBox'> | |
1320 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21864", event); return false;' | |
1321 title='Google Chrome Linux x64 ETA: 2s' class='DevStatusBox runn
ing TagGoogleChromeLinuxx6421864' | |
1322 target="_blank"></a> | |
1323 </td> | |
1324 <td class='DevStatusBox'> | |
1325 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1326 title='Google Chrome Mac' class='DevStatusBox notstarted ' | |
1327 target="_blank"></a> | |
1328 </td> | |
1329 <td class='DevStatusBox'> | |
1330 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20ChromeOS&number=25500", event); return false;' | |
1331 title='Google Chrome ChromeOS build successful' class='DevStatusB
ox success TagGoogleChromeChromeOS25500' | |
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 clang: Fix spurious '../llvm/configure: line 541: 0: Bad file descript
or' on clang roll try jobs.<br/><br/>The subprocess module used to dup() std
in, but apparently that's no longer true. So dup it manually.<br/>Patch from
Jay Soffian <jaysoffian@gmail.com>!<br/><br/>BUG=none<br/>TEST=Put a new
clang revision in tools/clang/scripts/update.sh, send try job. Works.<br/><br/><
br/>Review URL: http://codereview.chromium.org/9430007 | |
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=122838" t
arget="_blank">122838</a> | |
1356 </td> | |
1357 <td class='DevName ' width="1%"> | |
1358 yfriedman<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=9003", event); return false;' | |
1366 title='Google Chrome Win ETA: 88s' class='DevStatusBox running T
agGoogleChromeWin9003' | |
1367 target="_blank"></a> | |
1368 </td> | |
1369 <td class='DevStatusBox'> | |
1370 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17556", event); return false;' | |
1371 title='Google Chrome Linux build successful' class='DevStatusBox
success TagGoogleChromeLinux17556' | |
1372 target="_blank"></a> | |
1373 </td> | |
1374 <td class='DevStatusBox'> | |
1375 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21863", event); return false;' | |
1376 title='Google Chrome Linux x64 build successful' class='DevStatus
Box success TagGoogleChromeLinuxx6421863' | |
1377 target="_blank"></a> | |
1378 </td> | |
1379 <td class='DevStatusBox'> | |
1380 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1381 title='Google Chrome Mac' class='DevStatusBox notstarted ' | |
1382 target="_blank"></a> | |
1383 </td> | |
1384 <td class='DevStatusBox'> | |
1385 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20ChromeOS&number=25499", event); return false;' | |
1386 title='Google Chrome ChromeOS build successful' class='DevStatusB
ox success TagGoogleChromeChromeOS25499' | |
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 Fix android build of sync_unit_tests after http://crrev.com/122182<br/><br
/>In the Android NDK, PTHREAD_STACK_MIN is defined as 2 * PAGE_SIZE. This<br/>in
clude defines PAGE_SIZE.<br/><br/>BUG=113487<br/>TEST=<br/><br/><br/>Review URL:
http://codereview.chromium.org/9425003 | |
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=122837" t
arget="_blank">122837</a> | |
1411 </td> | |
1412 <td class='DevName Alt' width="1%"> | |
1413 rsleevi<span style="display:none">ohnoyoudont</span>@chromium.org | |
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=9003", event); return false;' | |
1421 title='Google Chrome Win ETA: 88s' class='DevStatusBox running T
agGoogleChromeWin9003' | |
1422 target="_blank"></a> | |
1423 </td> | |
1424 <td class='DevStatusBox'> | |
1425 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17555", event); return false;' | |
1426 title='Google Chrome Linux build successful' class='DevStatusBox
success TagGoogleChromeLinux17555' | |
1427 target="_blank"></a> | |
1428 </td> | |
1429 <td class='DevStatusBox'> | |
1430 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21863", event); return false;' | |
1431 title='Google Chrome Linux x64 build successful' class='DevStatus
Box success TagGoogleChromeLinuxx6421863' | |
1432 target="_blank"></a> | |
1433 </td> | |
1434 <td class='DevStatusBox'> | |
1435 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1436 title='Google Chrome Mac' class='DevStatusBox notstarted ' | |
1437 target="_blank"></a> | |
1438 </td> | |
1439 <td class='DevStatusBox'> | |
1440 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20ChromeOS&number=25499", event); return false;' | |
1441 title='Google Chrome ChromeOS build successful' class='DevStatusB
ox success TagGoogleChromeChromeOS25499' | |
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 Correct some header paths in GYP files<br/><br/>BUG=none<br/>TEST=MSVC 201
0 doesn't needlessly recompile targets<br/>TBR=brettw<br/><br/>Review URL: h
ttps://chromiumcodereview.appspot.com/9430010 | |
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=122836" t
arget="_blank">122836</a> | |
1466 </td> | |
1467 <td class='DevName ' width="1%"> | |
1468 thakis<span style="display:none">ohnoyoudont</span>@chromium.org | |
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=9003", event); return false;' | |
1476 title='Google Chrome Win ETA: 88s' class='DevStatusBox running T
agGoogleChromeWin9003' | |
1477 target="_blank"></a> | |
1478 </td> | |
1479 <td class='DevStatusBox'> | |
1480 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17555", event); return false;' | |
1481 title='Google Chrome Linux build successful' class='DevStatusBox
success TagGoogleChromeLinux17555' | |
1482 target="_blank"></a> | |
1483 </td> | |
1484 <td class='DevStatusBox'> | |
1485 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21862", event); return false;' | |
1486 title='Google Chrome Linux x64 build successful' class='DevStatus
Box success TagGoogleChromeLinuxx6421862' | |
1487 target="_blank"></a> | |
1488 </td> | |
1489 <td class='DevStatusBox'> | |
1490 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1491 title='Google Chrome Mac' class='DevStatusBox notstarted ' | |
1492 target="_blank"></a> | |
1493 </td> | |
1494 <td class='DevStatusBox'> | |
1495 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20ChromeOS&number=25498", event); return false;' | |
1496 title='Google Chrome ChromeOS build successful' class='DevStatusB
ox success TagGoogleChromeChromeOS25498' | |
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 Fix a (harmless) clang warning in nss.<br/><br/>I'd disable it instead
, but net/third_party/nss is built as part<br/>of the normal 'net' targe
t, and gyp doesn't support per-file<br/>compiler flags.<br/><br/>BUG=none<br
/>TEST=none<br/><br/><br/>Review URL: http://codereview.chromium.org/9427020 | |
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=122835" t
arget="_blank">122835</a> | |
1521 </td> | |
1522 <td class='DevName Alt' width="1%"> | |
1523 agl<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=9003", event); return false;' | |
1531 title='Google Chrome Win ETA: 88s' class='DevStatusBox running T
agGoogleChromeWin9003' | |
1532 target="_blank"></a> | |
1533 </td> | |
1534 <td class='DevStatusBox'> | |
1535 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17554", event); return false;' | |
1536 title='Google Chrome Linux build successful' class='DevStatusBox
success TagGoogleChromeLinux17554' | |
1537 target="_blank"></a> | |
1538 </td> | |
1539 <td class='DevStatusBox'> | |
1540 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21862", event); return false;' | |
1541 title='Google Chrome Linux x64 build successful' class='DevStatus
Box success TagGoogleChromeLinuxx6421862' | |
1542 target="_blank"></a> | |
1543 </td> | |
1544 <td class='DevStatusBox'> | |
1545 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1546 title='Google Chrome Mac' class='DevStatusBox notstarted ' | |
1547 target="_blank"></a> | |
1548 </td> | |
1549 <td class='DevStatusBox'> | |
1550 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20ChromeOS&number=25497", event); return false;' | |
1551 title='Google Chrome ChromeOS build successful' class='DevStatusB
ox success TagGoogleChromeChromeOS25497' | |
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 net: remove special case for Kaspersky HTTPS<br/><br/>Kaspersky released a
n updated version some months ago and hopefully most users<br/>have upgraded by
now.<br/><br/>BUG=86208<br/>TEST=none<br/><br/>Review URL: https://chromiumcoder
eview.appspot.com/9419014 | |
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=122834" t
arget="_blank">122834</a> | |
1576 </td> | |
1577 <td class='DevName ' width="1%"> | |
1578 thakis<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=9002", event); return false;' | |
1586 title='Google Chrome Win build successful' class='DevStatusBox su
ccess TagGoogleChromeWin9002' | |
1587 target="_blank"></a> | |
1588 </td> | |
1589 <td class='DevStatusBox'> | |
1590 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17553", event); return false;' | |
1591 title='Google Chrome Linux build successful' class='DevStatusBox
success TagGoogleChromeLinux17553' | |
1592 target="_blank"></a> | |
1593 </td> | |
1594 <td class='DevStatusBox'> | |
1595 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21861", event); return false;' | |
1596 title='Google Chrome Linux x64 build successful' class='DevStatus
Box success TagGoogleChromeLinuxx6421861' | |
1597 target="_blank"></a> | |
1598 </td> | |
1599 <td class='DevStatusBox'> | |
1600 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Mac&number=6434", event); return false;' | |
1601 title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running
TagGoogleChromeMac6434' | |
1602 target="_blank"></a> | |
1603 </td> | |
1604 <td class='DevStatusBox'> | |
1605 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20ChromeOS&number=25496", event); return false;' | |
1606 title='Google Chrome ChromeOS build successful' class='DevStatusB
ox success TagGoogleChromeChromeOS25496' | |
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 mac: Make plugin_carbon_interpose's dependencies more explicit<br/><br
/>This is needed for the components build.<br/><br/>BUG=90078<br/>TEST=none<br/>
<br/>Review URL: http://codereview.chromium.org/9426021 | |
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=122833" t
arget="_blank">122833</a> | |
1631 </td> | |
1632 <td class='DevName Alt' width="1%"> | |
1633 thakis<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=9002", event); return false;' | |
1641 title='Google Chrome Win build successful' class='DevStatusBox su
ccess TagGoogleChromeWin9002' | |
1642 target="_blank"></a> | |
1643 </td> | |
1644 <td class='DevStatusBox'> | |
1645 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17553", event); return false;' | |
1646 title='Google Chrome Linux build successful' class='DevStatusBox
success TagGoogleChromeLinux17553' | |
1647 target="_blank"></a> | |
1648 </td> | |
1649 <td class='DevStatusBox'> | |
1650 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21861", event); return false;' | |
1651 title='Google Chrome Linux x64 build successful' class='DevStatus
Box success TagGoogleChromeLinuxx6421861' | |
1652 target="_blank"></a> | |
1653 </td> | |
1654 <td class='DevStatusBox'> | |
1655 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Mac&number=6434", event); return false;' | |
1656 title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running
TagGoogleChromeMac6434' | |
1657 target="_blank"></a> | |
1658 </td> | |
1659 <td class='DevStatusBox'> | |
1660 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20ChromeOS&number=25496", event); return false;' | |
1661 title='Google Chrome ChromeOS build successful' class='DevStatusB
ox success TagGoogleChromeChromeOS25496' | |
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 Call the built product of target gl 'gl_wrapper'.<br/><br/>With th
e components build on mac, libgl.dylib collides with /System/Library/Frameworks/
OpenGL.framework/Versions/A/Libraries/libGL.dylib (HFS+ is case-insensitive). li
bgl_wrapper.dylib on the other hand works fine.<br/><br/>BUG=90078<br/>TEST=mac
components build fails a bit later<br/><br/>Review URL: http://codereview.chromi
um.org/9426019 | |
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=122832" t
arget="_blank">122832</a> | |
1686 </td> | |
1687 <td class='DevName ' width="1%"> | |
1688 vollick<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=9002", event); return false;' | |
1696 title='Google Chrome Win build successful' class='DevStatusBox su
ccess TagGoogleChromeWin9002' | |
1697 target="_blank"></a> | |
1698 </td> | |
1699 <td class='DevStatusBox'> | |
1700 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17553", event); return false;' | |
1701 title='Google Chrome Linux build successful' class='DevStatusBox
success TagGoogleChromeLinux17553' | |
1702 target="_blank"></a> | |
1703 </td> | |
1704 <td class='DevStatusBox'> | |
1705 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21860", event); return false;' | |
1706 title='Google Chrome Linux x64 build successful' class='DevStatus
Box success TagGoogleChromeLinuxx6421860' | |
1707 target="_blank"></a> | |
1708 </td> | |
1709 <td class='DevStatusBox'> | |
1710 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Mac&number=6434", event); return false;' | |
1711 title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running
TagGoogleChromeMac6434' | |
1712 target="_blank"></a> | |
1713 </td> | |
1714 <td class='DevStatusBox'> | |
1715 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20ChromeOS&number=25496", event); return false;' | |
1716 title='Google Chrome ChromeOS build successful' class='DevStatusB
ox success TagGoogleChromeChromeOS25496' | |
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 Don't tell the compositor that the widget has resized in compact WM<br
/><br/>If the compositor is told that the widget has resized to something quite
large, the ui is scaled down to fit. It looks like this is no longer necessary.<
br/><br/>BUG=113729<br/>TEST=start chrome with --aura-window-mode=compact and no
tice that the ui does not shrink when you open many windows.<br/><br/><br/>Revie
w URL: http://codereview.chromium.org/9420030 | |
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=122831" t
arget="_blank">122831</a> | |
1741 </td> | |
1742 <td class='DevName Alt' width="1%"> | |
1743 glider<span style="display:none">ohnoyoudont</span>@chromium.org | |
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=9002", event); return false;' | |
1751 title='Google Chrome Win build successful' class='DevStatusBox su
ccess TagGoogleChromeWin9002' | |
1752 target="_blank"></a> | |
1753 </td> | |
1754 <td class='DevStatusBox'> | |
1755 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17553", event); return false;' | |
1756 title='Google Chrome Linux build successful' class='DevStatusBox
success TagGoogleChromeLinux17553' | |
1757 target="_blank"></a> | |
1758 </td> | |
1759 <td class='DevStatusBox'> | |
1760 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21860", event); return false;' | |
1761 title='Google Chrome Linux x64 build successful' class='DevStatus
Box success TagGoogleChromeLinuxx6421860' | |
1762 target="_blank"></a> | |
1763 </td> | |
1764 <td class='DevStatusBox'> | |
1765 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Mac&number=6434", event); return false;' | |
1766 title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running
TagGoogleChromeMac6434' | |
1767 target="_blank"></a> | |
1768 </td> | |
1769 <td class='DevStatusBox'> | |
1770 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20ChromeOS&number=25496", event); return false;' | |
1771 title='Google Chrome ChromeOS build successful' class='DevStatusB
ox success TagGoogleChromeChromeOS25496' | |
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 Pass -asan-blacklist when building with ASan<br/>Review URL: https://chrom
iumcodereview.appspot.com/9424048 | |
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=122830" t
arget="_blank">122830</a> | |
1796 </td> | |
1797 <td class='DevName ' width="1%"> | |
1798 erikwright<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=9002", event); return false;' | |
1806 title='Google Chrome Win build successful' class='DevStatusBox su
ccess TagGoogleChromeWin9002' | |
1807 target="_blank"></a> | |
1808 </td> | |
1809 <td class='DevStatusBox'> | |
1810 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17553", event); return false;' | |
1811 title='Google Chrome Linux build successful' class='DevStatusBox
success TagGoogleChromeLinux17553' | |
1812 target="_blank"></a> | |
1813 </td> | |
1814 <td class='DevStatusBox'> | |
1815 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21860", event); return false;' | |
1816 title='Google Chrome Linux x64 build successful' class='DevStatus
Box success TagGoogleChromeLinuxx6421860' | |
1817 target="_blank"></a> | |
1818 </td> | |
1819 <td class='DevStatusBox'> | |
1820 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Mac&number=6434", event); return false;' | |
1821 title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running
TagGoogleChromeMac6434' | |
1822 target="_blank"></a> | |
1823 </td> | |
1824 <td class='DevStatusBox'> | |
1825 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20ChromeOS&number=25495", event); return false;' | |
1826 title='Google Chrome ChromeOS build successful' class='DevStatusB
ox success TagGoogleChromeChromeOS25495' | |
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 These tests cannot run under chrome_frame_net_tests by design.<br/><br/>BU
G=None<br/>TEST=chrome_frame_net_tests pass on IE8<br/><br/><br/>Review URL: htt
p://codereview.chromium.org/9432001 | |
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=122829" t
arget="_blank">122829</a> | |
1851 </td> | |
1852 <td class='DevName Alt' width="1%"> | |
1853 ben<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=9002", event); return false;' | |
1861 title='Google Chrome Win build successful' class='DevStatusBox su
ccess TagGoogleChromeWin9002' | |
1862 target="_blank"></a> | |
1863 </td> | |
1864 <td class='DevStatusBox'> | |
1865 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17552", event); return false;' | |
1866 title='Google Chrome Linux build successful' class='DevStatusBox
success TagGoogleChromeLinux17552' | |
1867 target="_blank"></a> | |
1868 </td> | |
1869 <td class='DevStatusBox'> | |
1870 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21859", event); return false;' | |
1871 title='Google Chrome Linux x64 build successful' class='DevStatus
Box success TagGoogleChromeLinuxx6421859' | |
1872 target="_blank"></a> | |
1873 </td> | |
1874 <td class='DevStatusBox'> | |
1875 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Mac&number=6434", event); return false;' | |
1876 title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running
TagGoogleChromeMac6434' | |
1877 target="_blank"></a> | |
1878 </td> | |
1879 <td class='DevStatusBox'> | |
1880 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20ChromeOS&number=25494", event); return false;' | |
1881 title='Google Chrome ChromeOS build successful' class='DevStatusB
ox success TagGoogleChromeChromeOS25494' | |
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 Change EventGenerator to take a RootWindow at construction instead of just
assuming one via RootWindow::GetInstance().<br/><br/>http://crbug.com/112131<br
/>TEST=none<br/>Committed: https://src.chromium.org/viewvc/chrome?view=rev&r
evision=122716<br/>Review URL: https://chromiumcodereview.appspot.com/9421016 | |
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=122828" t
arget="_blank">122828</a> | |
1906 </td> | |
1907 <td class='DevName ' width="1%"> | |
1908 thakis<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=9001", event); return false;' | |
1916 title='Google Chrome Win failed compile' class='DevStatusBox fail
ure TagGoogleChromeWin9001' | |
1917 target="_blank"></a> | |
1918 </td> | |
1919 <td class='DevStatusBox'> | |
1920 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17551", event); return false;' | |
1921 title='Google Chrome Linux build successful' class='DevStatusBox
success TagGoogleChromeLinux17551' | |
1922 target="_blank"></a> | |
1923 </td> | |
1924 <td class='DevStatusBox'> | |
1925 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21858", event); return false;' | |
1926 title='Google Chrome Linux x64 build successful' class='DevStatus
Box success TagGoogleChromeLinuxx6421858' | |
1927 target="_blank"></a> | |
1928 </td> | |
1929 <td class='DevStatusBox'> | |
1930 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Mac&number=6434", event); return false;' | |
1931 title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running
TagGoogleChromeMac6434' | |
1932 target="_blank"></a> | |
1933 </td> | |
1934 <td class='DevStatusBox'> | |
1935 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20ChromeOS&number=25493", event); return false;' | |
1936 title='Google Chrome ChromeOS build successful' class='DevStatusB
ox success TagGoogleChromeChromeOS25493' | |
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 Make IPC_MESSAGE_EXPORT more robust.<br/><br/>Currently, files that want t
o export ipc messages currently do<br/><br/> #undef IPC_MESSAGE_EXPORT<br/
> #define IPC_MESSAGE_EXPORT CONTENT_EXPORT<br/><br/>at the top, and
files that don't want to export ipc messages just do nothing. This is probl
ematic if a cc file does<br/><br/> #include "exported_messages.h"<
br/> #include "not_exported_messages.h"<br/><br/>because the secon
d header file picks up the #define from the first file and declares all its mess
ages as exported. In other translation units, where not_exported_messages.h is #
included without another header above it, the messages will get default visibili
ty – so the same class ends up with different visibilities in different translat
ion units.<br/><br/>Instead, let ipc_message_macros.h #undef IPC_MESSAGE_EXPORT
outside of the include guard, so that all files that don't set the define se
e it as defined to nothing. (Idea from jam@)<br/><br/>Also disable about:ipc in
the component build, since ipc logging adds a dependency from chrome on all ipc
message classes, so the | |
1948 </td> | |
1949 </tr> | |
1950 | |
1951 <tr> | |
1952 <td colspan="3" class='DevDetails '> | |
1953 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
1954 <li>Google Chrome Win: compile failed - <a href="console/../bu
ilders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/stdio"> stdio </a> -
<a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/lo
gs/stdio_html"> stdio_html </a> - <a href="console/../builders/Google%20Chrome%2
0Win/builds/9001/steps/compile/logs/webkit_unit_tests%20-%202233%20error%28s%29"
> webkit_unit_tests - 2233 error(s) </a> - <a href="console/../builders/Google%2
0Chrome%20Win/builds/9001/steps/compile/logs/warnings"> warnings </a></li> | |
1955 </ul> | |
1956 </td> | |
1957 </tr> | |
1958 | |
1959 | |
1960 <tr class='DevStatusSpacing'> | |
1961 <td> | |
1962 </td> | |
1963 </tr> | |
1964 | |
1965 <tr> | |
1966 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1967 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122827" t
arget="_blank">122827</a> | |
1968 </td> | |
1969 <td class='DevName Alt' width="1%"> | |
1970 jam<span style="display:none">ohnoyoudont</span>@chromium.org | |
1971 </td> | |
1972 | |
1973 <td class='DevStatus Alt DevStatusCollapse'> | |
1974 <table width="100%"> | |
1975 <tr> | |
1976 <td class='DevStatusBox'> | |
1977 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Win&number=9001", event); return false;' | |
1978 title='Google Chrome Win failed compile' class='DevStatusBox fail
ure TagGoogleChromeWin9001' | |
1979 target="_blank"></a> | |
1980 </td> | |
1981 <td class='DevStatusBox'> | |
1982 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17551", event); return false;' | |
1983 title='Google Chrome Linux build successful' class='DevStatusBox
success TagGoogleChromeLinux17551' | |
1984 target="_blank"></a> | |
1985 </td> | |
1986 <td class='DevStatusBox'> | |
1987 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21858", event); return false;' | |
1988 title='Google Chrome Linux x64 build successful' class='DevStatus
Box success TagGoogleChromeLinuxx6421858' | |
1989 target="_blank"></a> | |
1990 </td> | |
1991 <td class='DevStatusBox'> | |
1992 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Mac&number=6434", event); return false;' | |
1993 title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running
TagGoogleChromeMac6434' | |
1994 target="_blank"></a> | |
1995 </td> | |
1996 <td class='DevStatusBox'> | |
1997 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20ChromeOS&number=25493", event); return false;' | |
1998 title='Google Chrome ChromeOS build successful' class='DevStatusB
ox success TagGoogleChromeChromeOS25493' | |
1999 target="_blank"></a> | |
2000 </td> | |
2001 | |
2002 </tr> | |
2003 </table> | |
2004 </td> | |
2005 </tr> | |
2006 | |
2007 <tr> | |
2008 <td colspan="3" class='DevComment Alt'> | |
2009 Get rid of the MockResourceContext singleton. It's just simpler to hav
e each test create one if it needs it.<br/><br/>BUG=98716<br/>Review URL: https:
//chromiumcodereview.appspot.com/9423046 | |
2010 </td> | |
2011 </tr> | |
2012 | |
2013 <tr> | |
2014 <td colspan="3" class='DevDetails Alt'> | |
2015 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
2016 <li>Google Chrome Win: compile failed - <a href="console/../bu
ilders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/stdio"> stdio </a> -
<a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/lo
gs/stdio_html"> stdio_html </a> - <a href="console/../builders/Google%20Chrome%2
0Win/builds/9001/steps/compile/logs/webkit_unit_tests%20-%202233%20error%28s%29"
> webkit_unit_tests - 2233 error(s) </a> - <a href="console/../builders/Google%2
0Chrome%20Win/builds/9001/steps/compile/logs/warnings"> warnings </a></li> | |
2017 </ul> | |
2018 </td> | |
2019 </tr> | |
2020 | |
2021 | |
2022 <tr class='DevStatusSpacing'> | |
2023 <td> | |
2024 </td> | |
2025 </tr> | |
2026 | |
2027 <tr> | |
2028 <td class='DevRev DevRevCollapse' width="1%"> | |
2029 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122826" t
arget="_blank">122826</a> | |
2030 </td> | |
2031 <td class='DevName ' width="1%"> | |
2032 grunell<span style="display:none">ohnoyoudont</span>@chromium.org | |
2033 </td> | |
2034 | |
2035 <td class='DevStatus DevStatusCollapse'> | |
2036 <table width="100%"> | |
2037 <tr> | |
2038 <td class='DevStatusBox'> | |
2039 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Win&number=9001", event); return false;' | |
2040 title='Google Chrome Win failed compile' class='DevStatusBox fail
ure TagGoogleChromeWin9001' | |
2041 target="_blank"></a> | |
2042 </td> | |
2043 <td class='DevStatusBox'> | |
2044 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17551", event); return false;' | |
2045 title='Google Chrome Linux build successful' class='DevStatusBox
success TagGoogleChromeLinux17551' | |
2046 target="_blank"></a> | |
2047 </td> | |
2048 <td class='DevStatusBox'> | |
2049 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21858", event); return false;' | |
2050 title='Google Chrome Linux x64 build successful' class='DevStatus
Box success TagGoogleChromeLinuxx6421858' | |
2051 target="_blank"></a> | |
2052 </td> | |
2053 <td class='DevStatusBox'> | |
2054 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Mac&number=6434", event); return false;' | |
2055 title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running
TagGoogleChromeMac6434' | |
2056 target="_blank"></a> | |
2057 </td> | |
2058 <td class='DevStatusBox'> | |
2059 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20ChromeOS&number=25492", event); return false;' | |
2060 title='Google Chrome ChromeOS build successful' class='DevStatusB
ox success TagGoogleChromeChromeOS25492' | |
2061 target="_blank"></a> | |
2062 </td> | |
2063 | |
2064 </tr> | |
2065 </table> | |
2066 </td> | |
2067 </tr> | |
2068 | |
2069 <tr> | |
2070 <td colspan="3" class='DevComment '> | |
2071 Handling failure of creating PeerConnection factory instead of crashing.<b
r/><br/>There are valid reasons for the creation to fail, so we should not crash
. Unfortunately, there is still no way of reporting an error to the javascript a
pp so we have to silently fail.<br/><br/>BUG=112442,114006,114396<br/>TEST=For e
xample call getUserMedia with a default audio device set to 96 kHz sampling freq
uency.<br/><br/>Review URL: http://codereview.chromium.org/9395085 | |
2072 </td> | |
2073 </tr> | |
2074 | |
2075 <tr> | |
2076 <td colspan="3" class='DevDetails '> | |
2077 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
2078 <li>Google Chrome Win: compile failed - <a href="console/../bu
ilders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/stdio"> stdio </a> -
<a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/lo
gs/stdio_html"> stdio_html </a> - <a href="console/../builders/Google%20Chrome%2
0Win/builds/9001/steps/compile/logs/webkit_unit_tests%20-%202233%20error%28s%29"
> webkit_unit_tests - 2233 error(s) </a> - <a href="console/../builders/Google%2
0Chrome%20Win/builds/9001/steps/compile/logs/warnings"> warnings </a></li> | |
2079 </ul> | |
2080 </td> | |
2081 </tr> | |
2082 | |
2083 | |
2084 <tr class='DevStatusSpacing'> | |
2085 <td> | |
2086 </td> | |
2087 </tr> | |
2088 | |
2089 <tr> | |
2090 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
2091 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122825" t
arget="_blank">122825</a> | |
2092 </td> | |
2093 <td class='DevName Alt' width="1%"> | |
2094 rnk<span style="display:none">ohnoyoudont</span>@chromium.org | |
2095 </td> | |
2096 | |
2097 <td class='DevStatus Alt DevStatusCollapse'> | |
2098 <table width="100%"> | |
2099 <tr> | |
2100 <td class='DevStatusBox'> | |
2101 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Win&number=9001", event); return false;' | |
2102 title='Google Chrome Win failed compile' class='DevStatusBox fail
ure TagGoogleChromeWin9001' | |
2103 target="_blank"></a> | |
2104 </td> | |
2105 <td class='DevStatusBox'> | |
2106 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17550", event); return false;' | |
2107 title='Google Chrome Linux build successful' class='DevStatusBox
success TagGoogleChromeLinux17550' | |
2108 target="_blank"></a> | |
2109 </td> | |
2110 <td class='DevStatusBox'> | |
2111 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21857", event); return false;' | |
2112 title='Google Chrome Linux x64 build successful' class='DevStatus
Box success TagGoogleChromeLinuxx6421857' | |
2113 target="_blank"></a> | |
2114 </td> | |
2115 <td class='DevStatusBox'> | |
2116 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Mac&number=6434", event); return false;' | |
2117 title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running
TagGoogleChromeMac6434' | |
2118 target="_blank"></a> | |
2119 </td> | |
2120 <td class='DevStatusBox'> | |
2121 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20ChromeOS&number=25491", event); return false;' | |
2122 title='Google Chrome ChromeOS build successful' class='DevStatusB
ox success TagGoogleChromeChromeOS25491' | |
2123 target="_blank"></a> | |
2124 </td> | |
2125 | |
2126 </tr> | |
2127 </table> | |
2128 </td> | |
2129 </tr> | |
2130 | |
2131 <tr> | |
2132 <td colspan="3" class='DevComment Alt'> | |
2133 Widen memcheck suppressions to cover a leak in RWHVAura.<br/><br/>TBR=hbon
o@chromium.org<br/>BUG=112798<br/>TEST=<br/><br/>Review URL: https://chromiumcod
ereview.appspot.com/9432002 | |
2134 </td> | |
2135 </tr> | |
2136 | |
2137 <tr> | |
2138 <td colspan="3" class='DevDetails Alt'> | |
2139 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
2140 <li>Google Chrome Win: compile failed - <a href="console/../bu
ilders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/stdio"> stdio </a> -
<a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/lo
gs/stdio_html"> stdio_html </a> - <a href="console/../builders/Google%20Chrome%2
0Win/builds/9001/steps/compile/logs/webkit_unit_tests%20-%202233%20error%28s%29"
> webkit_unit_tests - 2233 error(s) </a> - <a href="console/../builders/Google%2
0Chrome%20Win/builds/9001/steps/compile/logs/warnings"> warnings </a></li> | |
2141 </ul> | |
2142 </td> | |
2143 </tr> | |
2144 | |
2145 | |
2146 <tr class='DevStatusSpacing'> | |
2147 <td> | |
2148 </td> | |
2149 </tr> | |
2150 | |
2151 <tr> | |
2152 <td class='DevRev DevRevCollapse' width="1%"> | |
2153 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122824" t
arget="_blank">122824</a> | |
2154 </td> | |
2155 <td class='DevName ' width="1%"> | |
2156 junov<span style="display:none">ohnoyoudont</span>@chromium.org | |
2157 </td> | |
2158 | |
2159 <td class='DevStatus DevStatusCollapse'> | |
2160 <table width="100%"> | |
2161 <tr> | |
2162 <td class='DevStatusBox'> | |
2163 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Win&number=9001", event); return false;' | |
2164 title='Google Chrome Win failed compile' class='DevStatusBox fail
ure TagGoogleChromeWin9001' | |
2165 target="_blank"></a> | |
2166 </td> | |
2167 <td class='DevStatusBox'> | |
2168 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux&number=17549", event); return false;' | |
2169 title='Google Chrome Linux build successful' class='DevStatusBox
success TagGoogleChromeLinux17549' | |
2170 target="_blank"></a> | |
2171 </td> | |
2172 <td class='DevStatusBox'> | |
2173 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Linux%20x64&number=21856", event); return false;' | |
2174 title='Google Chrome Linux x64 build successful' class='DevStatus
Box success TagGoogleChromeLinuxx6421856' | |
2175 target="_blank"></a> | |
2176 </td> | |
2177 <td class='DevStatusBox'> | |
2178 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20Mac&number=6434", event); return false;' | |
2179 title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running
TagGoogleChromeMac6434' | |
2180 target="_blank"></a> | |
2181 </td> | |
2182 <td class='DevStatusBox'> | |
2183 <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Ch
rome%20ChromeOS&number=25490", event); return false;' | |
2184 title='Google Chrome ChromeOS build successful' class='DevStatusB
ox success TagGoogleChromeChromeOS25490' | |
2185 target="_blank"></a> | |
2186 </td> | |
2187 | |
2188 </tr> | |
2189 </table> | |
2190 </td> | |
2191 </tr> | |
2192 | |
2193 <tr> | |
2194 <td colspan="3" class='DevComment '> | |
2195 Adding test content to the throughput tests to measure 2d canvas <br/>blit
ting performance<br/><br/>BUG=http://code.google.com/p/chromium/issues/detail?id
=97666<br/>TEST=throughput tests<br/>Review URL: https://chromiumcodereview.apps
pot.com/9355016 | |
2196 </td> | |
2197 </tr> | |
2198 | |
2199 <tr> | |
2200 <td colspan="3" class='DevDetails '> | |
2201 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
2202 <li>Google Chrome Win: compile failed - <a href="console/../bu
ilders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/stdio"> stdio </a> -
<a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/lo
gs/stdio_html"> stdio_html </a> - <a href="console/../builders/Google%20Chrome%2
0Win/builds/9001/steps/compile/logs/webkit_unit_tests%20-%202233%20error%28s%29"
> webkit_unit_tests - 2233 error(s) </a> - <a href="console/../builders/Google%2
0Chrome%20Win/builds/9001/steps/compile/logs/warnings"> warnings </a></li> | |
2203 </ul> | |
2204 </td> | |
2205 </tr> | |
2206 | |
2207 | |
2208 <tr class='DevStatusSpacing'> | |
2209 <td> | |
2210 </td> | |
2211 </tr> | |
2212 | |
2213 </table> | |
2214 </div> | |
2215 | |
2216 | |
2217 <div id="divBox" onmouseout="if (checkMouseLeave(this, event)) this.style.displa
y = 'None'" class="BuildWaterfall"> | |
2218 </div> | |
2219 | |
2220 | |
2221 <iframe id="frameBox" style="display: none;"></iframe> | |
2222 | |
2223 <script type="text/javascript"> | |
2224 // replace 'onload="updateDiv(event);" with this, as iframe doesn't have onload
event in xhtml | |
2225 window.addEventListener("load", function() { | |
2226 document.getElementById('frameBox').onload = function(event) { | |
2227 updateDiv(event); | |
2228 }; | |
2229 }, false); | |
2230 </script> | |
2231 | |
2232 </div><div class="footer" style="clear:both"> | |
2233 <hr/> | |
2234 [ <a class='collapse' href='#' OnClick='collapse(); return false;'>collapse</a
> | |
2235 <a class='uncollapse' href='#' OnClick='uncollapse(); return false;'>un-collap
se</a> | |
2236 <a class='merge' href="#" OnClick="merge(); return false;">merge</a> | |
2237 <a class='unmerge' style='display: none' href="#" OnClick="unmerge(); return f
alse;">un-merge</a> ] | |
2238 <p>Debug info: {'revision_final': 25, 'builds_scanned': 200, 'source_all': 25,
'source_len': 25, 'last_revision': u'122824', 'from_cache': 61, 'added_blocks':
0, 'load_time': 0.30434489250183105}</p> | |
2239 </div> | |
2240 </body> | |
2241 </html> | |
OLD | NEW |