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 Memory</title> | |
8 <link rel="stylesheet" href="default.css" type="text/css" /> | |
9 <link rel="alternate" type="application/rss+xml" title="RSS" href="rss"> | |
10 | |
11 <script type='text/javascript'> | |
12 // <![CDATA[ | |
13 // | |
14 | |
15 // | |
16 // Functions used to display the build status bubble on box click. | |
17 // | |
18 | |
19 // show the build status box. This is called when the user clicks on a block. | |
20 function showBuildBox(url, event) { | |
21 // Find the current curson position. | |
22 var cursorPosTop = (window.event ? window.event.clientY : event.pageY) | |
23 var cursorPosLeft = (window.event ? window.event.clientX : event.pageX) | |
24 | |
25 // Offset the position by 5, to make the window appears under the cursor. | |
26 cursorPosTop = cursorPosTop + document.body.scrollTop -5 ; | |
27 cursorPosLeft = cursorPosLeft + document.body.scrollLeft - 5; | |
28 | |
29 // Move the div (hidden) under the cursor. | |
30 var divBox = document.getElementById('divBox'); | |
31 divBox.style.top = parseInt(cursorPosTop) + 'px'; | |
32 divBox.style.left = parseInt(cursorPosLeft) + 'px'; | |
33 | |
34 // Reload the hidden frame with the build page we want to show. | |
35 // The onload even on this frame will update the div and make it visible. | |
36 document.getElementById("frameBox").src = url | |
37 | |
38 // We don't want to reload the page. | |
39 return false; | |
40 } | |
41 | |
42 // OnLoad handler for the iframe containing the build to show. | |
43 function updateDiv(event) { | |
44 // Get the frame innerHTML. | |
45 var iframeContent = document.getElementById("frameBox").contentWindow.docume
nt.body.innerHTML; | |
46 | |
47 // If there is any content, update the div, and make it visible. | |
48 if (iframeContent) { | |
49 var divBox = document.getElementById('divBox'); | |
50 divBox.innerHTML = iframeContent ; | |
51 divBox.style.display = "block"; | |
52 } | |
53 } | |
54 | |
55 // Util functions to know if an element is contained inside another element. | |
56 // We use this to know when we mouse out our build status div. | |
57 function containsDOM (container, containee) { | |
58 var isParent = false; | |
59 do { | |
60 if ((isParent = container == containee)) | |
61 break; | |
62 containee = containee.parentNode; | |
63 } while (containee != null); | |
64 | |
65 return isParent; | |
66 } | |
67 | |
68 // OnMouseOut handler. Returns true if the mouse moved out of the element. | |
69 // It is false if the mouse is still in the element, but in a blank part of it, | |
70 // like in an empty table cell. | |
71 function checkMouseLeave(element, event) { | |
72 if (element.contains && event.toElement) { | |
73 return !element.contains(event.toElement); | |
74 } | |
75 else if (event.relatedTarget) { | |
76 return !containsDOM(element, event.relatedTarget); | |
77 } | |
78 } | |
79 | |
80 // Creates a new cookie. | |
81 function createCookie(name, value, day) { | |
82 var date = new Date(); | |
83 date.setTime(date.getTime() + (day * 24 * 60 * 60 * 1000)); | |
84 var expires = "; expires=" + date.toGMTString(); | |
85 document.cookie = name + "=" + value+expires + "; path=/"; | |
86 } | |
87 | |
88 // Returns the vaue of a cookie, or null if it does not exist. | |
89 function readCookie(name) { | |
90 var begin = name + "="; | |
91 var data = document.cookie.split(';'); | |
92 for(var i = 0; i < data.length; i++) { | |
93 var cookie = data[i]; | |
94 while (cookie.charAt(0) == ' ') | |
95 cookie = cookie.substring(1, cookie.length); | |
96 if (cookie.indexOf(begin) == 0) | |
97 return cookie.substring(begin.length, cookie.length); | |
98 } | |
99 | |
100 return null; | |
101 } | |
102 | |
103 // Deletes a cookie. | |
104 function eraseCookie(name) { | |
105 createCookie(name, "", -1); | |
106 } | |
107 | |
108 // Hides all "details" and "comments" section. | |
109 function collapse() { | |
110 // Hide all Comments sections. | |
111 var comments = document.querySelectorAll('.DevComment'); | |
112 for(var i = 0; i < comments.length; i++) { | |
113 comments[i].style.display = "none"; | |
114 } | |
115 | |
116 // Hide all details sections. | |
117 var details = document.querySelectorAll('.DevDetails'); | |
118 for(var i = 0; i < details.length; i++) { | |
119 details[i].style.display = "none"; | |
120 } | |
121 | |
122 // Fix the rounding on the Revision box. (Lower right corner must be round) | |
123 var revisions = document.querySelectorAll('.DevRev'); | |
124 for(var i = 0; i < revisions.length; i++) { | |
125 revisions[i].className = revisions[i].className + ' DevRevCollapse'; | |
126 } | |
127 | |
128 // Fix the rounding on the last category box. (Lower left corner must be rou
nd) | |
129 var status = document.querySelectorAll('.last'); | |
130 for(var i = 0; i < status.length; i++) { | |
131 status[i].className = status[i].className + ' DevStatusCollapse'; | |
132 } | |
133 | |
134 // Create a cookie to remember that we want the view to be collapsed. | |
135 createCookie('collapsed', 'true', 30) | |
136 | |
137 // Hide the collapse and the unmerge buttons. | |
138 document.querySelectorAll('.collapse')[0].style.display = 'none' | |
139 document.querySelectorAll('.unmerge')[0].style.display = 'none' | |
140 | |
141 // Activate the merge and expand buttons. | |
142 document.querySelectorAll('.uncollapse')[0].style.display = 'inline' | |
143 document.querySelectorAll('.merge')[0].style.display = 'inline' | |
144 } | |
145 | |
146 // Expands the view. This is the opposite of "Collapse" | |
147 function uncollapse() { | |
148 unmerge(); | |
149 | |
150 // Make the comments visible. | |
151 var comments = document.querySelectorAll('.DevComment'); | |
152 for(var i = 0; i < comments.length; i++) { | |
153 comments[i].style.display = ""; | |
154 } | |
155 | |
156 // Make the details visible. | |
157 var details = document.querySelectorAll('.DevDetails'); | |
158 for(var i = 0; i < details.length; i++) { | |
159 details[i].style.display = ""; | |
160 } | |
161 | |
162 // Remove the round corner (lower right) for the Revision box. | |
163 var revisions = document.querySelectorAll('.DevRev'); | |
164 for(var i = 0; i < revisions.length; i++) { | |
165 revisions[i].className = revisions[i].className.replace('DevRevCollapse'
, ''); | |
166 } | |
167 | |
168 // Remoe the round corner (lower left) for the last category box. | |
169 var status = document.querySelectorAll('.DevStatus'); | |
170 for(var i = 0; i < status.length; i++) { | |
171 status[i].className = status[i].className.replace('DevStatusCollapse', '
'); | |
172 } | |
173 | |
174 // Delete the cookies that say that we want to be collapsed or merged. | |
175 eraseCookie('collapsed') | |
176 eraseCookie('merged') | |
177 | |
178 // Display the "collapse" and "merge" buttons. | |
179 document.querySelectorAll('.collapse')[0].style.display = 'inline' | |
180 document.querySelectorAll('.merge')[0].style.display = 'inline' | |
181 | |
182 // Remove the "uncollapse" and "unmerge" buttons. | |
183 document.querySelectorAll('.uncollapse')[0].style.display = 'none' | |
184 document.querySelectorAll('.unmerge')[0].style.display = 'none' | |
185 } | |
186 | |
187 // Merge all the status boxes together. | |
188 function merge() { | |
189 collapse(); | |
190 | |
191 // Hide all the spacing. | |
192 var spacing = document.querySelectorAll('.DevStatusSpacing'); | |
193 for(var i = 0; i < spacing.length; i++) { | |
194 spacing[i].style.display = "none"; | |
195 } | |
196 | |
197 // Each boxes have, in the className, a tag that uniquely represents the | |
198 // build where this data comes from. | |
199 // Since we want to merge all the boxes coming from the same build, we | |
200 // parse the document to find all the builds, and then, for each build, we | |
201 // concatenate the boxes. | |
202 | |
203 var allTags = []; | |
204 all = document.getElementsByTagName('*') | |
205 for(var i = 0; i < all.length; i++) { | |
206 var element = all[i]; | |
207 start = element.className.indexOf('Tag') | |
208 if (start != -1) { | |
209 var className = "" | |
210 end = element.className.indexOf(' ', start) | |
211 if (end != -1) { | |
212 className = element.className.substring(start, end); | |
213 } else { | |
214 className = element.className.substring(start); | |
215 } | |
216 allTags[className] = 1; | |
217 } | |
218 } | |
219 | |
220 // Mergeall tags that we found | |
221 for (i in allTags) { | |
222 var current = document.querySelectorAll('.' + i); | |
223 | |
224 // We do the work only if there is more than 1 box with the same | |
225 // build. | |
226 if (current.length > 1) { | |
227 // Add the noround class to all the boxes. | |
228 for(var i = 0; i < current.length; i++) { | |
229 current[i].className = current[i].className + ' noround'; | |
230 } | |
231 | |
232 // Add the begin class to the first box. | |
233 current[0].className = current[0].className + ' begin'; | |
234 | |
235 // Add the end class to the last box. | |
236 last = current.length - 1; | |
237 current[last].className = current[last].className + ' end'; | |
238 } | |
239 } | |
240 | |
241 // Display the "unmerge" button. | |
242 document.querySelectorAll('.unmerge')[0].style.display = 'inline' | |
243 document.querySelectorAll('.uncollapse')[0].style.display = 'inline' | |
244 | |
245 // Remove the "merge" button. | |
246 document.querySelectorAll('.collapse')[0].style.display = 'none' | |
247 document.querySelectorAll('.merge')[0].style.display = 'none' | |
248 | |
249 // Create a cookie to remember that we want to be merged. | |
250 createCookie('merged', 'true', 30) | |
251 } | |
252 | |
253 // Un-merge the view. This is the opposite of "merge". | |
254 function unmerge() { | |
255 // We put back all the spacing. | |
256 var spacing = document.querySelectorAll('.DevStatusSpacing'); | |
257 for(var i = 0; i < spacing.length; i++) { | |
258 spacing[i].style.display = ""; | |
259 } | |
260 | |
261 // We remove the class added to all the boxes we modified. | |
262 var noround = document.querySelectorAll('.noround'); | |
263 for(var i = 0; i < noround.length; i++) { | |
264 noround[i].className = noround[i].className.replace("begin", ''); | |
265 noround[i].className = noround[i].className.replace("end", ''); | |
266 noround[i].className = noround[i].className.replace("noround", ''); | |
267 } | |
268 | |
269 // Delete the cookie, we don't want to be merged anymore. | |
270 eraseCookie('merged') | |
271 | |
272 // Display the "merge" button. | |
273 document.querySelectorAll('.merge')[0].style.display = 'inline' | |
274 | |
275 // Hide the "unmerge" button. | |
276 document.querySelectorAll('.unmerge')[0].style.display = 'none' | |
277 } | |
278 | |
279 function SetupView() { | |
280 if (readCookie('merged')) { | |
281 merge(); | |
282 } else if (readCookie('collapsed')) { | |
283 collapse(); | |
284 } | |
285 } | |
286 | |
287 document.addEventListener("DOMContentLoaded", SetupView, false); | |
288 | |
289 // ]]> | |
290 </script> | |
291 </head> | |
292 <body class="interface"> | |
293 <div class="header"> | |
294 <a href=".">Home</a> | |
295 - <a href="waterfall">Waterfall</a> | |
296 <a href="grid">Grid</a> | |
297 <a href="tgrid">T-Grid</a> | |
298 <a href="console">Console</a> | |
299 <a href="builders">Builders</a> | |
300 <a href="one_line_per_build">Recent Builds</a> | |
301 <a href="buildslaves">Buildslaves</a> | |
302 <a href="changes">Changesources</a> | |
303 - <a href="json/help">JSON API</a> | |
304 - <a href="about">About</a> | |
305 </div> | |
306 | |
307 <hr/> | |
308 <script> | |
309 /** | |
310 * Pseudo namespace for chromium - keep it short because we are in a very | |
311 * narrow scope for this file. | |
312 * @type {Object} | |
313 */ | |
314 var c = {}; | |
315 | |
316 /** | |
317 * Replaces html references with anchor tags to the same. | |
318 * @param {String} className CSS class to operate on. | |
319 */ | |
320 function autoLink(className) { | |
321 var comments = document.querySelectorAll(className); | |
322 for(var i = 0; i < comments.length; i++) { | |
323 comments[i].innerHTML = comments[i].innerHTML.replace( | |
324 /https?:\/\/[^ \t\n<]*/g, '<a href="$&">$&</a>'); | |
325 } | |
326 }; | |
327 | |
328 window.addEventListener("load", function() { | |
329 autoLink('.DevComment'); | |
330 }, false); | |
331 | |
332 /** | |
333 * This is the indicator for whether we are in console or waterfall | |
334 * mode, or some future resource. | |
335 * @type {String} | |
336 */ | |
337 c.viewtype = location.pathname.split('/').slice(-1); | |
338 | |
339 /** | |
340 * Returns a search string portion including marker, or an empty string. | |
341 * optional. | |
342 * @param {String} opt_s A search string, or some form of emptiness. | |
343 * @returns {!String} | |
344 */ | |
345 function search(opt_s) { | |
346 return opt_s ? '?' + opt_s.replace(/^[?]/, '') : ''; | |
347 }; | |
348 | |
349 /** | |
350 * Replicates a string. | |
351 * @param {Number} i A whole number of repetitions. | |
352 * @param {String} x The string to be repeated. | |
353 * @returns {!String} | |
354 */ | |
355 function repeat(i, x){ | |
356 var t = '' | |
357 for (j = 0; j < i; j++) { t += x; } | |
358 return t; | |
359 }; | |
360 | |
361 /** | |
362 * A simple HTML table string. | |
363 * @param {String} attributes A set of HTML attributes for the table. | |
364 * @param {String} contents The contents. | |
365 * @returns {!String} | |
366 */ | |
367 function table(attributes, contents) { | |
368 return '<table ' + attributes + '>' + contents + '</table>\n'; | |
369 }; | |
370 | |
371 /** | |
372 * A simple HTML div string. | |
373 * @param {String} attributes A set of HTML attributes for the div. | |
374 * @param {String} contents The contents. | |
375 * @returns {!String} | |
376 */ | |
377 function div(attributes, contents) { | |
378 return '<div ' + attributes + '>' + contents + '</div>'; | |
379 }; | |
380 | |
381 /** | |
382 * A simple HTML table row string. | |
383 * @param {String} attributes A set of HTML attributes for the table row. | |
384 * @param {String} contents The contents. | |
385 * @returns {!String} | |
386 */ | |
387 function tr(contents) { | |
388 return '<tr>' + contents + '</tr>\n'; | |
389 }; | |
390 | |
391 /** | |
392 * A simple HTML table cell string. | |
393 * @param {String} attributes A set of HTML attributes for the table cell. | |
394 * @param {String} contents The contents. | |
395 * @returns {!String} | |
396 */ | |
397 function td(attributes, contents) { | |
398 return '<td ' + attributes + '>' + contents + '</td>'; | |
399 }; | |
400 | |
401 /** | |
402 * A simple HTML anchor string. | |
403 * @param {String} url The value for the href. | |
404 * @param {String} attributes A set of HTML attributes for the table. | |
405 * @param {String} contents The contents. | |
406 * @returns {!String} | |
407 */ | |
408 function a(url, contents, attributes) { | |
409 return '<a href="' + url + '" ' + attributes + '>' + contents + '</a>'; | |
410 }; | |
411 | |
412 /** | |
413 * Gives an HTML anchor string to the specified URL, but of the same view | |
414 * type as the current page. | |
415 * @param {String} url The URL portion up to the view. | |
416 * @param {String} search_opt A the query portion. | |
417 * @param {String} contents The contents for the tag. | |
418 * @returns {!String} | |
419 */ | |
420 function aView(url, search_opt, contents) { | |
421 return a((url ? url + '/' : '') + c.viewtype + search(search_opt), | |
422 contents, '') | |
423 }; | |
424 | |
425 /** | |
426 * A simple HTML iframe string. | |
427 * @param {String} attributes A set of HTML attributes for the table. | |
428 * @param {String} url The source of the iframe. | |
429 * @returns {!String} the iframe or an empty string if noframe is specified. | |
430 */ | |
431 function iFrame(attributes, url) { | |
432 if (window.location.href.search('noframe') == -1) { | |
433 return '<iframe ' + attributes + ' src="' + url + '"></iframe>'; | |
434 } | |
435 return '' | |
436 }; | |
437 </script> | |
438 | |
439 <div class="Announcement"> | |
440 | |
441 <iframe width="100%" height="44" frameborder="0" scrolling="no" src="http://chro
mium-status.appspot.com/current"></iframe> | |
442 | |
443 <center style="padding: 0 7px"> | |
444 <table width="100%" valign="top" bgcolor="#efefef" style="-webkit-border-botto
m-left-radius: 24px; -webkit-border-bottom-right-radius: 24px; -moz-border-botto
m-right-radius: 24px; -moz-border-bottom-right-radius: 24px; box-shadow: 2px 2
px 6px rgba(0, 0, 0, 0.6); -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); -web
kit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);"> | |
445 <tr> | |
446 <td width="29%"> | |
447 <table valign="top" width="100%"> | |
448 <tr> | |
449 <td style="text-align: right;"> | |
450 <b>Builds:</b> | |
451 </td> | |
452 <td> | |
453 <a href="http://commondatastorage.googleapis.com/chromium-browser-
continuous/index.html">continuous</a> | | |
454 <a href="http://build.chromium.org/f/chromium/symsrv/index.html">s
ymbols</a> | | |
455 <a href="http://chromium-status.appspot.com">status</a> | |
456 </td> | |
457 </tr> | |
458 <tr> | |
459 <td style="text-align: right;"> | |
460 <b>Dashboards:</b> | |
461 </td> | |
462 <td> | |
463 <a href="http://build.chromium.org/f/chromium/perf/dashboard/overv
iew.html">perf</a> | | |
464 <a href="http://build.chromium.org/f/chromium/perf/dashboard/memor
y.html">memory</a> | | |
465 <a href="http://build.chromium.org/f/chromium/perf/dashboard/sizes
.html">sizes</a> | | |
466 <a href="http://build.chromium.org/f/chromium/coverage/">coverage<
/a> | | |
467 <a href="http://build.chromium.org/f/chromium/flakiness/">flakines
s</a> | | |
468 <a href="http://build.chromium.org/p/chromium/stats">stats</a> | |
469 </td> | |
470 </tr> | |
471 <tr> | |
472 <td style="text-align: right;"> | |
473 <b>Chromium:</b> | |
474 </td> | |
475 <td> | |
476 <a href="http://src.chromium.org/viewvc/chrome">sources</a> | | |
477 <a href="http://codereview.chromium.org/">reviews</a> | | |
478 <a href="http://code.google.com/p/chromium/issues/list?can=2&q=&so
rt=pri+mstone&colspec=ID%20Stars%20Pri%20Area%20Type%20Status%20Summary%20Modifi
ed%20Owner%20Mstone">bugs</a> | | |
479 <a href="http://dev.chromium.org/Home">dev</a> | | |
480 <a href="http://www.google.com/support/chrome/">support</a> | |
481 </td> | |
482 </tr> | |
483 <tr> | |
484 <td style="text-align: right;"> | |
485 <b>Sheriffs:</b> | |
486 </td> | |
487 <td> | |
488 <script src='http://chromium-build-master.appspot.com/p/chromium/s
heriff.js'></script>,<br> | |
489 <script src='http://chromium-build-master.appspot.com/p/chromium/s
heriff_webkit.js'></script>(WebKit), | |
490 <script src='http://chromium-build-master.appspot.com/p/chromium/s
heriff_memory.js'></script>(Memory), | |
491 <script src='http://chromium-build-master.appspot.com/p/chromium/s
heriff_nacl.js'></script>(NaCl),<br> | |
492 <script src='http://chromium-build-master.appspot.com/p/chromium/s
heriff_perf.js'></script>(Perf), | |
493 <script src='http://chromium-build-master.appspot.com/p/chromium/s
heriff_cros_mtv.js'></script>, | |
494 <script src='http://chromium-build-master.appspot.com/p/chromium/s
heriff_cros_nonmtv.js'></script>(CrOS),<br> | |
495 <a href="https://www.google.com/calendar/render?cid=google.com_iqf
ka4i9asiva67vlqqf1es094%40group.calendar.google.com">trooper schedule</a> | |
496 </td> | |
497 </tr> | |
498 <tr> | |
499 <td style="text-align: right;"> | |
500 <b>Navigate:</b> | |
501 </td> | |
502 <td colspan="2"> | |
503 <script> | |
504 document.write([ | |
505 a("http://dev.chromium.org/developers/testing/chromium-build-inf
rastructure/tour-of-the-chromium-buildbot", "about", ""), | |
506 a("./waterfall/help", "customize", ""), | |
507 a("./waterfall", "waterfall", ""), | |
508 a("./console", "console", ""), | |
509 a("../tryserver.chromium/waterfall", "try", ""), | |
510 aView("../chromium.fyi", "", "experimental"), | |
511 a("./waterfall?show_events=true&failures_only=true", "failures",
""), | |
512 aView("../chromium.memory", "", "memory"), | |
513 aView("../chromium.memory.fyi", "", "memory fyi"), | |
514 aView("../chromium.chromiumos", "", "chromiumos chrome"), | |
515 aView("../chromiumos", "", "chromiumos team"), | |
516 aView("../client.nacl", "", "NaCl")].join(' | ')); | |
517 </script> | |
518 </td> | |
519 </tr> | |
520 </table> | |
521 </td> | |
522 <td width="1" bgcolor="#CCCCCC"> | |
523 </td> | |
524 <td width="1%"> | |
525 </td> | |
526 <td width="70%"> | |
527 <table width="100%"> | |
528 <script language="javascript"> | |
529 c.chromium = ''; | |
530 c.chromium_chromiumos = ''; | |
531 c.webkit = 'builder=Webkit+Win+Builder+%28deps%29&builder=Webkit+Win
+%28deps%29&builder=Webkit+Mac+Builder+%28deps%29&builder=Webkit+Mac10.6+%28deps
%29&builder=Webkit+Linux+%28deps%29'; | |
532 c.memory = ''; | |
533 c.memory_fyi = ''; | |
534 c.perf = ''; | |
535 c.cros = ''; | |
536 c.chrome = ''; | |
537 c.lkgr = ''; | |
538 c.pyauto = ''; | |
539 | |
540 c.status = '../chromium'; | |
541 c.status_cros = '../chromium.chromiumos'; | |
542 c.status_webkit = '../chromium.webkit'; | |
543 c.status_memory = '../chromium.memory'; | |
544 c.status_memory_fyi = '../chromium.memory.fyi'; | |
545 c.status_chrome = '../chromium.chrome'; | |
546 c.status_perf = '../chromium.perf'; | |
547 c.status_lkgr = '../chromium.lkgr'; | |
548 c.status_pyauto = '../chromium.pyauto'; | |
549 | |
550 /** | |
551 * Builds a reference for the iframe with boxes. | |
552 * @param {String} x the name of the waterfall. | |
553 * @returns {String} The URL. | |
554 */ | |
555 function BarUrl(x) { | |
556 return 'http://chromium-build-master.appspot.com/p/' + x + | |
557 '/horizontal_one_box_per_builder'; | |
558 } | |
559 c.bar = BarUrl('chromium') | |
560 c.bar_webkit = 'http://build.chromium.org/p/chromium.webkit/horizont
al_one_box_per_builder'; | |
561 c.bar_memory = BarUrl('chromium.memory'); | |
562 c.bar_memory_fyi = BarUrl('chromium.memory.fyi'); | |
563 c.bar_perf = BarUrl('chromium.perf'); | |
564 c.bar_chrome = BarUrl('chromium.chrome'); | |
565 c.bar_lkgr = BarUrl('chromium.lkgr'); | |
566 c.bar_pyauto = BarUrl('chromium.pyauto'); | |
567 c.bar_cros = BarUrl('chromium.chromiumos'); | |
568 | |
569 | |
570 /** | |
571 * Joins URL and search terms. | |
572 * @param {String} type The Url without the cgi search portion. | |
573 * @param {String} content The parameters for the sub-selection | |
574 * inside the master. Optional. | |
575 * @returns {String} A completed URL. | |
576 */ | |
577 function GetUrl(type, content) { | |
578 return type + search(content); | |
579 } | |
580 | |
581 /** | |
582 * Callback to replace the LKGR link with one that identifies | |
583 * the current revision for the LKGR. | |
584 */ | |
585 function DisplayLKGR() { | |
586 var xmlHttp = new XMLHttpRequest(); | |
587 var lkgrPath = c.status_lkgr + | |
588 '/json/builders/Linux%20x64/builds/-1?as_text=1'; | |
589 var lkgrLink = document.getElementById('LKGRLink'); | |
590 xmlHttp.open('GET', lkgrPath, false); | |
591 xmlHttp.send(null); | |
592 if (xmlHttp.readyState == 4 && xmlHttp.status == 200) { | |
593 var buildData; | |
594 if (typeof (JSON) !== 'undefined' && | |
595 typeof (JSON.parse) === 'function') { | |
596 buildData = JSON.parse(xmlHttp.responseText); | |
597 } else { | |
598 buildData = eval('(' + xmlHttp.responseText + ')'); | |
599 } | |
600 var properties = buildData['properties']; | |
601 for (var i = 0; i < properties.length; i++) { | |
602 if (properties[i][0] == 'got_revision') { | |
603 lkgrLink.innerHTML = 'LKGR<br>(' + properties[i][1] + ')'; | |
604 return; | |
605 } | |
606 } | |
607 } | |
608 } | |
609 | |
610 c.default_iframe_properties = [ | |
611 'width="100%"', | |
612 'height="20"', | |
613 'frameborder="0"', | |
614 'scrolling="no"', | |
615 ].join(' '); | |
616 | |
617 /** | |
618 * The most detailed specification of a builder bar with boxes. | |
619 * Reutrns an HTMLstring with 2 <td>s | |
620 * @param {String} status_url URL portion for the title link. | |
621 * @param {String} bar_url URL portion for the array of boxes. | |
622 * @param {String} content specification for the references, e.g.. | |
623 * @param {String} name what to call this bar. | |
624 * @param {String} bar_properties extra attributes for the array | |
625 * of boxes portion. | |
626 * @param {String} link_properties extra attributes for the name | |
627 * portion that is a link. | |
628 * @returns {String} | |
629 */ | |
630 function HTMLBaseBar(status_url, bar_url, content, name, | |
631 bar_properties, link_properties) { | |
632 return td('', | |
633 a(GetUrl(status_url, content), name, | |
634 link_properties)) + | |
635 td(bar_properties, | |
636 iFrame(c.default_iframe_properties, | |
637 GetUrl(bar_url, content))); | |
638 } | |
639 | |
640 /** | |
641 * The more common specification of a builder bar with boxes. | |
642 * Presume to take an entire row. | |
643 * @param {String} status_url URL portion for the title link. | |
644 * @param {String} bar_url URL portion for the array of boxes. | |
645 * @param {String} content specification for the references, e.g.. | |
646 * @param {String} name what to call this bar. | |
647 * @returns {String} | |
648 */ | |
649 function HTMLBar(status_url, bar_url, content, name) { | |
650 return tr(HTMLBaseBar(status_url, bar_url, content, name, | |
651 'width="99%" colspan=9', '')); | |
652 } | |
653 | |
654 /** | |
655 * A specification of a builder bar with boxes, which is one of | |
656 * multiple in a row. | |
657 * Note that since these are elements of a table, percents | |
658 * can be irrelevant to the final layout. | |
659 * @param {String} status_url URL portion for the title link. | |
660 * @param {String} bar_url URL portion for the array of boxes. | |
661 * @param {String} content specification for the references, e.g.. | |
662 * @param {String} name what to call this bar. | |
663 * @param {String} pc percent of the line to allocat to the boxes. | |
664 * @returns {String} | |
665 */ | |
666 function HTMLSubBar(status_url, bar_url, content, name, pc) { | |
667 return HTMLBaseBar(status_url, bar_url, content, name, | |
668 'width="' + pc + '"', ''); | |
669 } | |
670 | |
671 document.write(tr(td( | |
672 'colspan=10 width="99%"', | |
673 div( | |
674 'class="closerbox" width="100%"', | |
675 div('class="title" width="100%" height="10px"', | |
676 a('http://chromium-status.appspot.com', 'Tree closers')) + | |
677 table( | |
678 'width="100%"', | |
679 HTMLBar(c.status, c.bar, c.chromium, 'Chromium') + | |
680 tr(HTMLSubBar(c.status_cros, c.bar_cros, c.cros, | |
681 'ChromiumOS', '30%') + | |
682 HTMLSubBar(c.status_chrome, c.bar_chrome, c.chrome, | |
683 'Official', '35%') + | |
684 HTMLSubBar(c.status_memory, c.bar_memory, c.memory, | |
685 'Memory', '25%'))))))); | |
686 | |
687 document.write(tr( | |
688 HTMLBaseBar(c.status_webkit, c.bar_webkit, c.webkit, | |
689 'Webkit', 'colspan=3', '') + | |
690 HTMLBaseBar(c.status_perf, c.bar_perf, c.perf, | |
691 'Perf', 'colspan=5', ''))); | |
692 | |
693 document.write(tr( | |
694 HTMLBaseBar(c.status_lkgr, c.bar_lkgr, c.lkgr, | |
695 'LKGR', 'width="10%"', 'id="LKGRLink"') + | |
696 HTMLBaseBar(c.status_pyauto, c.bar_pyauto, c.pyauto, | |
697 'PyAuto', 'width="15%"', '') + | |
698 HTMLBaseBar(c.status_memory_fyi, c.bar_memory_fyi, c.memory_fyi, | |
699 'Memory<br>FYI', 'width="50%" colspan=5', ''))); | |
700 | |
701 setTimeout('DisplayLKGR()', 100); | |
702 </script> | |
703 </table> | |
704 </td> | |
705 </tr> | |
706 </table> | |
707 </center> | |
708 | |
709 </div> | |
710 <hr/> | |
711 | |
712 <div class="content"> | |
713 <div align="center"> | |
714 <table width="95%" class="Grid" border="0" cellspacing="0"> | |
715 <tr> | |
716 <td width="33%" align="left" class="left_align"> | |
717 </td> | |
718 <td width="33%" align="center" class="center_align"> | |
719 <div align="center"> | |
720 <table class="info"> | |
721 <tr> | |
722 <td>Legend: </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/ASAN%20Builder' title='ASAN Builder' class='DevS
laveBox success' target="_blank"> | |
774 </a> | |
775 </td> | |
776 | |
777 <td class='DevSlaveBox'> | |
778 <a href='./builders/ASAN%20Tests%20%281%29' title='ASAN Tests (1)' c
lass='DevSlaveBox success' target="_blank"> | |
779 </a> | |
780 </td> | |
781 | |
782 <td class='DevSlaveBox'> | |
783 <a href='./builders/ASAN%20Tests%20%282%29' title='ASAN Tests (2)' c
lass='DevSlaveBox success' target="_blank"> | |
784 </a> | |
785 </td> | |
786 | |
787 </tr> | |
788 </table> | |
789 </td> | |
790 </tr> | |
791 | |
792 | |
793 <tr> | |
794 <td class='DevRev DevRevCollapse' width="1%"> | |
795 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122850" t
arget="_blank">122850</a> | |
796 </td> | |
797 <td class='DevName ' width="1%"> | |
798 jamesr<span style="display:none">ohnoyoudont</span>@chromium.org | |
799 </td> | |
800 | |
801 <td class='DevStatus DevStatusCollapse'> | |
802 <table width="100%"> | |
803 <tr> | |
804 <td class='DevStatusBox'> | |
805 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
806 title='ASAN Builder' class='DevStatusBox notstarted ' | |
807 target="_blank"></a> | |
808 </td> | |
809 <td class='DevStatusBox'> | |
810 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
811 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
812 target="_blank"></a> | |
813 </td> | |
814 <td class='DevStatusBox'> | |
815 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
816 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
817 target="_blank"></a> | |
818 </td> | |
819 | |
820 </tr> | |
821 </table> | |
822 </td> | |
823 </tr> | |
824 | |
825 <tr> | |
826 <td colspan="3" class='DevComment '> | |
827 WebKit roll 108328:108357<br/><br/>TBR=yutak@chromium.org<br/><br/>Review
URL: https://chromiumcodereview.appspot.com/9433008 | |
828 </td> | |
829 </tr> | |
830 | |
831 | |
832 | |
833 <tr class='DevStatusSpacing'> | |
834 <td> | |
835 </td> | |
836 </tr> | |
837 | |
838 <tr> | |
839 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
840 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122849" t
arget="_blank">122849</a> | |
841 </td> | |
842 <td class='DevName Alt' width="1%"> | |
843 mnissler<span style="display:none">ohnoyoudont</span>@chromium.org | |
844 </td> | |
845 | |
846 <td class='DevStatus Alt DevStatusCollapse'> | |
847 <table width="100%"> | |
848 <tr> | |
849 <td class='DevStatusBox'> | |
850 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11888", event); return false;' | |
851 title='ASAN Builder ETA: 148s' class='DevStatusBox running TagAS
ANBuilder11888' | |
852 target="_blank"></a> | |
853 </td> | |
854 <td class='DevStatusBox'> | |
855 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
856 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
857 target="_blank"></a> | |
858 </td> | |
859 <td class='DevStatusBox'> | |
860 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
861 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
862 target="_blank"></a> | |
863 </td> | |
864 | |
865 </tr> | |
866 </table> | |
867 </td> | |
868 </tr> | |
869 | |
870 <tr> | |
871 <td colspan="3" class='DevComment Alt'> | |
872 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 | |
873 </td> | |
874 </tr> | |
875 | |
876 | |
877 | |
878 <tr class='DevStatusSpacing'> | |
879 <td> | |
880 </td> | |
881 </tr> | |
882 | |
883 <tr> | |
884 <td class='DevRev DevRevCollapse' width="1%"> | |
885 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122848" t
arget="_blank">122848</a> | |
886 </td> | |
887 <td class='DevName ' width="1%"> | |
888 mihaip<span style="display:none">ohnoyoudont</span>@chromium.org | |
889 </td> | |
890 | |
891 <td class='DevStatus DevStatusCollapse'> | |
892 <table width="100%"> | |
893 <tr> | |
894 <td class='DevStatusBox'> | |
895 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11887", event); return false;' | |
896 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11887' | |
897 target="_blank"></a> | |
898 </td> | |
899 <td class='DevStatusBox'> | |
900 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
901 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
902 target="_blank"></a> | |
903 </td> | |
904 <td class='DevStatusBox'> | |
905 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
906 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
907 target="_blank"></a> | |
908 </td> | |
909 | |
910 </tr> | |
911 </table> | |
912 </td> | |
913 </tr> | |
914 | |
915 <tr> | |
916 <td colspan="3" class='DevComment '> | |
917 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 | |
918 </td> | |
919 </tr> | |
920 | |
921 | |
922 | |
923 <tr class='DevStatusSpacing'> | |
924 <td> | |
925 </td> | |
926 </tr> | |
927 | |
928 <tr> | |
929 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
930 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122847" t
arget="_blank">122847</a> | |
931 </td> | |
932 <td class='DevName Alt' width="1%"> | |
933 tdresser<span style="display:none">ohnoyoudont</span>@chromium.org | |
934 </td> | |
935 | |
936 <td class='DevStatus Alt DevStatusCollapse'> | |
937 <table width="100%"> | |
938 <tr> | |
939 <td class='DevStatusBox'> | |
940 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11886", event); return false;' | |
941 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11886' | |
942 target="_blank"></a> | |
943 </td> | |
944 <td class='DevStatusBox'> | |
945 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
946 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
947 target="_blank"></a> | |
948 </td> | |
949 <td class='DevStatusBox'> | |
950 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
951 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
952 target="_blank"></a> | |
953 </td> | |
954 | |
955 </tr> | |
956 </table> | |
957 </td> | |
958 </tr> | |
959 | |
960 <tr> | |
961 <td colspan="3" class='DevComment Alt'> | |
962 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 | |
963 </td> | |
964 </tr> | |
965 | |
966 | |
967 | |
968 <tr class='DevStatusSpacing'> | |
969 <td> | |
970 </td> | |
971 </tr> | |
972 | |
973 <tr> | |
974 <td class='DevRev DevRevCollapse' width="1%"> | |
975 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122846" t
arget="_blank">122846</a> | |
976 </td> | |
977 <td class='DevName ' width="1%"> | |
978 pkasting<span style="display:none">ohnoyoudont</span>@chromium.org | |
979 </td> | |
980 | |
981 <td class='DevStatus DevStatusCollapse'> | |
982 <table width="100%"> | |
983 <tr> | |
984 <td class='DevStatusBox'> | |
985 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11885", event); return false;' | |
986 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11885' | |
987 target="_blank"></a> | |
988 </td> | |
989 <td class='DevStatusBox'> | |
990 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6054", event); return false;' | |
991 title='ASAN Tests (1) ETA: 0s' class='DevStatusBox running TagAS
ANTests16054' | |
992 target="_blank"></a> | |
993 </td> | |
994 <td class='DevStatusBox'> | |
995 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
996 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
997 target="_blank"></a> | |
998 </td> | |
999 | |
1000 </tr> | |
1001 </table> | |
1002 </td> | |
1003 </tr> | |
1004 | |
1005 <tr> | |
1006 <td colspan="3" class='DevComment '> | |
1007 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 | |
1008 </td> | |
1009 </tr> | |
1010 | |
1011 | |
1012 | |
1013 <tr class='DevStatusSpacing'> | |
1014 <td> | |
1015 </td> | |
1016 </tr> | |
1017 | |
1018 <tr> | |
1019 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1020 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122845" t
arget="_blank">122845</a> | |
1021 </td> | |
1022 <td class='DevName Alt' width="1%"> | |
1023 ananta<span style="display:none">ohnoyoudont</span>@chromium.org | |
1024 </td> | |
1025 | |
1026 <td class='DevStatus Alt DevStatusCollapse'> | |
1027 <table width="100%"> | |
1028 <tr> | |
1029 <td class='DevStatusBox'> | |
1030 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11885", event); return false;' | |
1031 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11885' | |
1032 target="_blank"></a> | |
1033 </td> | |
1034 <td class='DevStatusBox'> | |
1035 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6054", event); return false;' | |
1036 title='ASAN Tests (1) ETA: 0s' class='DevStatusBox running TagAS
ANTests16054' | |
1037 target="_blank"></a> | |
1038 </td> | |
1039 <td class='DevStatusBox'> | |
1040 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1041 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
1042 target="_blank"></a> | |
1043 </td> | |
1044 | |
1045 </tr> | |
1046 </table> | |
1047 </td> | |
1048 </tr> | |
1049 | |
1050 <tr> | |
1051 <td colspan="3" class='DevComment Alt'> | |
1052 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 | |
1053 </td> | |
1054 </tr> | |
1055 | |
1056 | |
1057 | |
1058 <tr class='DevStatusSpacing'> | |
1059 <td> | |
1060 </td> | |
1061 </tr> | |
1062 | |
1063 <tr> | |
1064 <td class='DevRev DevRevCollapse' width="1%"> | |
1065 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122844" t
arget="_blank">122844</a> | |
1066 </td> | |
1067 <td class='DevName ' width="1%"> | |
1068 elijahtaylor<span style="display:none">ohnoyoudont</span>@google.com | |
1069 </td> | |
1070 | |
1071 <td class='DevStatus DevStatusCollapse'> | |
1072 <table width="100%"> | |
1073 <tr> | |
1074 <td class='DevStatusBox'> | |
1075 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11884", event); return false;' | |
1076 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11884' | |
1077 target="_blank"></a> | |
1078 </td> | |
1079 <td class='DevStatusBox'> | |
1080 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6054", event); return false;' | |
1081 title='ASAN Tests (1) ETA: 0s' class='DevStatusBox running TagAS
ANTests16054' | |
1082 target="_blank"></a> | |
1083 </td> | |
1084 <td class='DevStatusBox'> | |
1085 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1086 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
1087 target="_blank"></a> | |
1088 </td> | |
1089 | |
1090 </tr> | |
1091 </table> | |
1092 </td> | |
1093 </tr> | |
1094 | |
1095 <tr> | |
1096 <td colspan="3" class='DevComment '> | |
1097 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 | |
1098 </td> | |
1099 </tr> | |
1100 | |
1101 | |
1102 | |
1103 <tr class='DevStatusSpacing'> | |
1104 <td> | |
1105 </td> | |
1106 </tr> | |
1107 | |
1108 <tr> | |
1109 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1110 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122843" t
arget="_blank">122843</a> | |
1111 </td> | |
1112 <td class='DevName Alt' width="1%"> | |
1113 benjhayden<span style="display:none">ohnoyoudont</span>@chromium.org | |
1114 </td> | |
1115 | |
1116 <td class='DevStatus Alt DevStatusCollapse'> | |
1117 <table width="100%"> | |
1118 <tr> | |
1119 <td class='DevStatusBox'> | |
1120 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11883", event); return false;' | |
1121 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11883' | |
1122 target="_blank"></a> | |
1123 </td> | |
1124 <td class='DevStatusBox'> | |
1125 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6053", event); return false;' | |
1126 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests16053' | |
1127 target="_blank"></a> | |
1128 </td> | |
1129 <td class='DevStatusBox'> | |
1130 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=4633", event); return false;' | |
1131 title='ASAN Tests (2) ETA: 290s' class='DevStatusBox running Tag
ASANTests24633' | |
1132 target="_blank"></a> | |
1133 </td> | |
1134 | |
1135 </tr> | |
1136 </table> | |
1137 </td> | |
1138 </tr> | |
1139 | |
1140 <tr> | |
1141 <td colspan="3" class='DevComment Alt'> | |
1142 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 | |
1143 </td> | |
1144 </tr> | |
1145 | |
1146 | |
1147 | |
1148 <tr class='DevStatusSpacing'> | |
1149 <td> | |
1150 </td> | |
1151 </tr> | |
1152 | |
1153 <tr> | |
1154 <td class='DevRev DevRevCollapse' width="1%"> | |
1155 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122840" t
arget="_blank">122840</a> | |
1156 </td> | |
1157 <td class='DevName ' width="1%"> | |
1158 zmo<span style="display:none">ohnoyoudont</span>@chromium.org | |
1159 </td> | |
1160 | |
1161 <td class='DevStatus DevStatusCollapse'> | |
1162 <table width="100%"> | |
1163 <tr> | |
1164 <td class='DevStatusBox'> | |
1165 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11882", event); return false;' | |
1166 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11882' | |
1167 target="_blank"></a> | |
1168 </td> | |
1169 <td class='DevStatusBox'> | |
1170 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6053", event); return false;' | |
1171 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests16053' | |
1172 target="_blank"></a> | |
1173 </td> | |
1174 <td class='DevStatusBox'> | |
1175 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=4633", event); return false;' | |
1176 title='ASAN Tests (2) ETA: 290s' class='DevStatusBox running Tag
ASANTests24633' | |
1177 target="_blank"></a> | |
1178 </td> | |
1179 | |
1180 </tr> | |
1181 </table> | |
1182 </td> | |
1183 </tr> | |
1184 | |
1185 <tr> | |
1186 <td colspan="3" class='DevComment '> | |
1187 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 | |
1188 </td> | |
1189 </tr> | |
1190 | |
1191 | |
1192 | |
1193 <tr class='DevStatusSpacing'> | |
1194 <td> | |
1195 </td> | |
1196 </tr> | |
1197 | |
1198 <tr> | |
1199 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1200 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122839" t
arget="_blank">122839</a> | |
1201 </td> | |
1202 <td class='DevName Alt' width="1%"> | |
1203 thakis<span style="display:none">ohnoyoudont</span>@chromium.org | |
1204 </td> | |
1205 | |
1206 <td class='DevStatus Alt DevStatusCollapse'> | |
1207 <table width="100%"> | |
1208 <tr> | |
1209 <td class='DevStatusBox'> | |
1210 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11881", event); return false;' | |
1211 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11881' | |
1212 target="_blank"></a> | |
1213 </td> | |
1214 <td class='DevStatusBox'> | |
1215 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6052", event); return false;' | |
1216 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests16052' | |
1217 target="_blank"></a> | |
1218 </td> | |
1219 <td class='DevStatusBox'> | |
1220 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=4633", event); return false;' | |
1221 title='ASAN Tests (2) ETA: 290s' class='DevStatusBox running Tag
ASANTests24633' | |
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 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 | |
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=122838" t
arget="_blank">122838</a> | |
1246 </td> | |
1247 <td class='DevName ' width="1%"> | |
1248 yfriedman<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("./buildstatus?builder=ASAN%20Buil
der&number=11880", event); return false;' | |
1256 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11880' | |
1257 target="_blank"></a> | |
1258 </td> | |
1259 <td class='DevStatusBox'> | |
1260 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6051", event); return false;' | |
1261 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests16051' | |
1262 target="_blank"></a> | |
1263 </td> | |
1264 <td class='DevStatusBox'> | |
1265 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=4632", event); return false;' | |
1266 title='ASAN Tests (2) build successful' class='DevStatusBox succe
ss TagASANTests24632' | |
1267 target="_blank"></a> | |
1268 </td> | |
1269 | |
1270 </tr> | |
1271 </table> | |
1272 </td> | |
1273 </tr> | |
1274 | |
1275 <tr> | |
1276 <td colspan="3" class='DevComment '> | |
1277 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 | |
1278 </td> | |
1279 </tr> | |
1280 | |
1281 | |
1282 | |
1283 <tr class='DevStatusSpacing'> | |
1284 <td> | |
1285 </td> | |
1286 </tr> | |
1287 | |
1288 <tr> | |
1289 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1290 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122837" t
arget="_blank">122837</a> | |
1291 </td> | |
1292 <td class='DevName Alt' width="1%"> | |
1293 rsleevi<span style="display:none">ohnoyoudont</span>@chromium.org | |
1294 </td> | |
1295 | |
1296 <td class='DevStatus Alt DevStatusCollapse'> | |
1297 <table width="100%"> | |
1298 <tr> | |
1299 <td class='DevStatusBox'> | |
1300 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11879", event); return false;' | |
1301 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11879' | |
1302 target="_blank"></a> | |
1303 </td> | |
1304 <td class='DevStatusBox'> | |
1305 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6051", event); return false;' | |
1306 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests16051' | |
1307 target="_blank"></a> | |
1308 </td> | |
1309 <td class='DevStatusBox'> | |
1310 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=4632", event); return false;' | |
1311 title='ASAN Tests (2) build successful' class='DevStatusBox succe
ss TagASANTests24632' | |
1312 target="_blank"></a> | |
1313 </td> | |
1314 | |
1315 </tr> | |
1316 </table> | |
1317 </td> | |
1318 </tr> | |
1319 | |
1320 <tr> | |
1321 <td colspan="3" class='DevComment Alt'> | |
1322 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 | |
1323 </td> | |
1324 </tr> | |
1325 | |
1326 | |
1327 | |
1328 <tr class='DevStatusSpacing'> | |
1329 <td> | |
1330 </td> | |
1331 </tr> | |
1332 | |
1333 <tr> | |
1334 <td class='DevRev DevRevCollapse' width="1%"> | |
1335 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122836" t
arget="_blank">122836</a> | |
1336 </td> | |
1337 <td class='DevName ' width="1%"> | |
1338 thakis<span style="display:none">ohnoyoudont</span>@chromium.org | |
1339 </td> | |
1340 | |
1341 <td class='DevStatus DevStatusCollapse'> | |
1342 <table width="100%"> | |
1343 <tr> | |
1344 <td class='DevStatusBox'> | |
1345 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11878", event); return false;' | |
1346 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11878' | |
1347 target="_blank"></a> | |
1348 </td> | |
1349 <td class='DevStatusBox'> | |
1350 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6050", event); return false;' | |
1351 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests16050' | |
1352 target="_blank"></a> | |
1353 </td> | |
1354 <td class='DevStatusBox'> | |
1355 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=4632", event); return false;' | |
1356 title='ASAN Tests (2) build successful' class='DevStatusBox succe
ss TagASANTests24632' | |
1357 target="_blank"></a> | |
1358 </td> | |
1359 | |
1360 </tr> | |
1361 </table> | |
1362 </td> | |
1363 </tr> | |
1364 | |
1365 <tr> | |
1366 <td colspan="3" class='DevComment '> | |
1367 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 | |
1368 </td> | |
1369 </tr> | |
1370 | |
1371 | |
1372 | |
1373 <tr class='DevStatusSpacing'> | |
1374 <td> | |
1375 </td> | |
1376 </tr> | |
1377 | |
1378 <tr> | |
1379 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1380 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122835" t
arget="_blank">122835</a> | |
1381 </td> | |
1382 <td class='DevName Alt' width="1%"> | |
1383 agl<span style="display:none">ohnoyoudont</span>@chromium.org | |
1384 </td> | |
1385 | |
1386 <td class='DevStatus Alt DevStatusCollapse'> | |
1387 <table width="100%"> | |
1388 <tr> | |
1389 <td class='DevStatusBox'> | |
1390 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11877", event); return false;' | |
1391 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11877' | |
1392 target="_blank"></a> | |
1393 </td> | |
1394 <td class='DevStatusBox'> | |
1395 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6049", event); return false;' | |
1396 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests16049' | |
1397 target="_blank"></a> | |
1398 </td> | |
1399 <td class='DevStatusBox'> | |
1400 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=4631", event); return false;' | |
1401 title='ASAN Tests (2) build successful' class='DevStatusBox succe
ss TagASANTests24631' | |
1402 target="_blank"></a> | |
1403 </td> | |
1404 | |
1405 </tr> | |
1406 </table> | |
1407 </td> | |
1408 </tr> | |
1409 | |
1410 <tr> | |
1411 <td colspan="3" class='DevComment Alt'> | |
1412 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 | |
1413 </td> | |
1414 </tr> | |
1415 | |
1416 | |
1417 | |
1418 <tr class='DevStatusSpacing'> | |
1419 <td> | |
1420 </td> | |
1421 </tr> | |
1422 | |
1423 <tr> | |
1424 <td class='DevRev DevRevCollapse' width="1%"> | |
1425 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122834" t
arget="_blank">122834</a> | |
1426 </td> | |
1427 <td class='DevName ' width="1%"> | |
1428 thakis<span style="display:none">ohnoyoudont</span>@chromium.org | |
1429 </td> | |
1430 | |
1431 <td class='DevStatus DevStatusCollapse'> | |
1432 <table width="100%"> | |
1433 <tr> | |
1434 <td class='DevStatusBox'> | |
1435 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11876", event); return false;' | |
1436 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11876' | |
1437 target="_blank"></a> | |
1438 </td> | |
1439 <td class='DevStatusBox'> | |
1440 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6048", event); return false;' | |
1441 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests16048' | |
1442 target="_blank"></a> | |
1443 </td> | |
1444 <td class='DevStatusBox'> | |
1445 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=4630", event); return false;' | |
1446 title='ASAN Tests (2) failed browser_tests' class='DevStatusBox f
ailure TagASANTests24630' | |
1447 target="_blank"></a> | |
1448 </td> | |
1449 | |
1450 </tr> | |
1451 </table> | |
1452 </td> | |
1453 </tr> | |
1454 | |
1455 <tr> | |
1456 <td colspan="3" class='DevComment '> | |
1457 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 | |
1458 </td> | |
1459 </tr> | |
1460 | |
1461 <tr> | |
1462 <td colspan="3" class='DevDetails '> | |
1463 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
1464 <li>ASAN Tests (2): browser_tests failed 1 - <a href="console/
../builders/ASAN%20Tests%20%282%29/builds/4630/steps/browser_tests/logs/stdio">
stdio </a> - <a href="console/../builders/ASAN%20Tests%20%282%29/builds/4630/ste
ps/browser_tests/logs/DownloadsCloseCheck_4"> DownloadsCloseCheck_4 </a></li> | |
1465 </ul> | |
1466 </td> | |
1467 </tr> | |
1468 | |
1469 | |
1470 <tr class='DevStatusSpacing'> | |
1471 <td> | |
1472 </td> | |
1473 </tr> | |
1474 | |
1475 <tr> | |
1476 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1477 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122833" t
arget="_blank">122833</a> | |
1478 </td> | |
1479 <td class='DevName Alt' width="1%"> | |
1480 thakis<span style="display:none">ohnoyoudont</span>@chromium.org | |
1481 </td> | |
1482 | |
1483 <td class='DevStatus Alt DevStatusCollapse'> | |
1484 <table width="100%"> | |
1485 <tr> | |
1486 <td class='DevStatusBox'> | |
1487 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11875", event); return false;' | |
1488 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11875' | |
1489 target="_blank"></a> | |
1490 </td> | |
1491 <td class='DevStatusBox'> | |
1492 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6048", event); return false;' | |
1493 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests16048' | |
1494 target="_blank"></a> | |
1495 </td> | |
1496 <td class='DevStatusBox'> | |
1497 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=4630", event); return false;' | |
1498 title='ASAN Tests (2) failed browser_tests' class='DevStatusBox f
ailure TagASANTests24630' | |
1499 target="_blank"></a> | |
1500 </td> | |
1501 | |
1502 </tr> | |
1503 </table> | |
1504 </td> | |
1505 </tr> | |
1506 | |
1507 <tr> | |
1508 <td colspan="3" class='DevComment Alt'> | |
1509 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 | |
1510 </td> | |
1511 </tr> | |
1512 | |
1513 <tr> | |
1514 <td colspan="3" class='DevDetails Alt'> | |
1515 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
1516 <li>ASAN Tests (2): browser_tests failed 1 - <a href="console/
../builders/ASAN%20Tests%20%282%29/builds/4630/steps/browser_tests/logs/stdio">
stdio </a> - <a href="console/../builders/ASAN%20Tests%20%282%29/builds/4630/ste
ps/browser_tests/logs/DownloadsCloseCheck_4"> DownloadsCloseCheck_4 </a></li> | |
1517 </ul> | |
1518 </td> | |
1519 </tr> | |
1520 | |
1521 | |
1522 <tr class='DevStatusSpacing'> | |
1523 <td> | |
1524 </td> | |
1525 </tr> | |
1526 | |
1527 <tr> | |
1528 <td class='DevRev DevRevCollapse' width="1%"> | |
1529 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122832" t
arget="_blank">122832</a> | |
1530 </td> | |
1531 <td class='DevName ' width="1%"> | |
1532 vollick<span style="display:none">ohnoyoudont</span>@chromium.org | |
1533 </td> | |
1534 | |
1535 <td class='DevStatus DevStatusCollapse'> | |
1536 <table width="100%"> | |
1537 <tr> | |
1538 <td class='DevStatusBox'> | |
1539 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11875", event); return false;' | |
1540 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11875' | |
1541 target="_blank"></a> | |
1542 </td> | |
1543 <td class='DevStatusBox'> | |
1544 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6048", event); return false;' | |
1545 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests16048' | |
1546 target="_blank"></a> | |
1547 </td> | |
1548 <td class='DevStatusBox'> | |
1549 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=4630", event); return false;' | |
1550 title='ASAN Tests (2) failed browser_tests' class='DevStatusBox f
ailure TagASANTests24630' | |
1551 target="_blank"></a> | |
1552 </td> | |
1553 | |
1554 </tr> | |
1555 </table> | |
1556 </td> | |
1557 </tr> | |
1558 | |
1559 <tr> | |
1560 <td colspan="3" class='DevComment '> | |
1561 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 | |
1562 </td> | |
1563 </tr> | |
1564 | |
1565 <tr> | |
1566 <td colspan="3" class='DevDetails '> | |
1567 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
1568 <li>ASAN Tests (2): browser_tests failed 1 - <a href="console/
../builders/ASAN%20Tests%20%282%29/builds/4630/steps/browser_tests/logs/stdio">
stdio </a> - <a href="console/../builders/ASAN%20Tests%20%282%29/builds/4630/ste
ps/browser_tests/logs/DownloadsCloseCheck_4"> DownloadsCloseCheck_4 </a></li> | |
1569 </ul> | |
1570 </td> | |
1571 </tr> | |
1572 | |
1573 | |
1574 <tr class='DevStatusSpacing'> | |
1575 <td> | |
1576 </td> | |
1577 </tr> | |
1578 | |
1579 <tr> | |
1580 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1581 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122831" t
arget="_blank">122831</a> | |
1582 </td> | |
1583 <td class='DevName Alt' width="1%"> | |
1584 glider<span style="display:none">ohnoyoudont</span>@chromium.org | |
1585 </td> | |
1586 | |
1587 <td class='DevStatus Alt DevStatusCollapse'> | |
1588 <table width="100%"> | |
1589 <tr> | |
1590 <td class='DevStatusBox'> | |
1591 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11874", event); return false;' | |
1592 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11874' | |
1593 target="_blank"></a> | |
1594 </td> | |
1595 <td class='DevStatusBox'> | |
1596 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6048", event); return false;' | |
1597 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests16048' | |
1598 target="_blank"></a> | |
1599 </td> | |
1600 <td class='DevStatusBox'> | |
1601 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=4630", event); return false;' | |
1602 title='ASAN Tests (2) failed browser_tests' class='DevStatusBox f
ailure TagASANTests24630' | |
1603 target="_blank"></a> | |
1604 </td> | |
1605 | |
1606 </tr> | |
1607 </table> | |
1608 </td> | |
1609 </tr> | |
1610 | |
1611 <tr> | |
1612 <td colspan="3" class='DevComment Alt'> | |
1613 Pass -asan-blacklist when building with ASan<br/>Review URL: https://chrom
iumcodereview.appspot.com/9424048 | |
1614 </td> | |
1615 </tr> | |
1616 | |
1617 <tr> | |
1618 <td colspan="3" class='DevDetails Alt'> | |
1619 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
1620 <li>ASAN Tests (2): browser_tests failed 1 - <a href="console/
../builders/ASAN%20Tests%20%282%29/builds/4630/steps/browser_tests/logs/stdio">
stdio </a> - <a href="console/../builders/ASAN%20Tests%20%282%29/builds/4630/ste
ps/browser_tests/logs/DownloadsCloseCheck_4"> DownloadsCloseCheck_4 </a></li> | |
1621 </ul> | |
1622 </td> | |
1623 </tr> | |
1624 | |
1625 | |
1626 <tr class='DevStatusSpacing'> | |
1627 <td> | |
1628 </td> | |
1629 </tr> | |
1630 | |
1631 <tr> | |
1632 <td class='DevRev DevRevCollapse' width="1%"> | |
1633 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122830" t
arget="_blank">122830</a> | |
1634 </td> | |
1635 <td class='DevName ' width="1%"> | |
1636 erikwright<span style="display:none">ohnoyoudont</span>@chromium.org | |
1637 </td> | |
1638 | |
1639 <td class='DevStatus DevStatusCollapse'> | |
1640 <table width="100%"> | |
1641 <tr> | |
1642 <td class='DevStatusBox'> | |
1643 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11873", event); return false;' | |
1644 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11873' | |
1645 target="_blank"></a> | |
1646 </td> | |
1647 <td class='DevStatusBox'> | |
1648 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6047", event); return false;' | |
1649 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests16047' | |
1650 target="_blank"></a> | |
1651 </td> | |
1652 <td class='DevStatusBox'> | |
1653 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=4629", event); return false;' | |
1654 title='ASAN Tests (2) build successful' class='DevStatusBox succe
ss TagASANTests24629' | |
1655 target="_blank"></a> | |
1656 </td> | |
1657 | |
1658 </tr> | |
1659 </table> | |
1660 </td> | |
1661 </tr> | |
1662 | |
1663 <tr> | |
1664 <td colspan="3" class='DevComment '> | |
1665 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 | |
1666 </td> | |
1667 </tr> | |
1668 | |
1669 | |
1670 | |
1671 <tr class='DevStatusSpacing'> | |
1672 <td> | |
1673 </td> | |
1674 </tr> | |
1675 | |
1676 <tr> | |
1677 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1678 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122829" t
arget="_blank">122829</a> | |
1679 </td> | |
1680 <td class='DevName Alt' width="1%"> | |
1681 ben<span style="display:none">ohnoyoudont</span>@chromium.org | |
1682 </td> | |
1683 | |
1684 <td class='DevStatus Alt DevStatusCollapse'> | |
1685 <table width="100%"> | |
1686 <tr> | |
1687 <td class='DevStatusBox'> | |
1688 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11872", event); return false;' | |
1689 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11872' | |
1690 target="_blank"></a> | |
1691 </td> | |
1692 <td class='DevStatusBox'> | |
1693 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6046", event); return false;' | |
1694 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests16046' | |
1695 target="_blank"></a> | |
1696 </td> | |
1697 <td class='DevStatusBox'> | |
1698 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=4629", event); return false;' | |
1699 title='ASAN Tests (2) build successful' class='DevStatusBox succe
ss TagASANTests24629' | |
1700 target="_blank"></a> | |
1701 </td> | |
1702 | |
1703 </tr> | |
1704 </table> | |
1705 </td> | |
1706 </tr> | |
1707 | |
1708 <tr> | |
1709 <td colspan="3" class='DevComment Alt'> | |
1710 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 | |
1711 </td> | |
1712 </tr> | |
1713 | |
1714 | |
1715 | |
1716 <tr class='DevStatusSpacing'> | |
1717 <td> | |
1718 </td> | |
1719 </tr> | |
1720 | |
1721 <tr> | |
1722 <td class='DevRev DevRevCollapse' width="1%"> | |
1723 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122828" t
arget="_blank">122828</a> | |
1724 </td> | |
1725 <td class='DevName ' width="1%"> | |
1726 thakis<span style="display:none">ohnoyoudont</span>@chromium.org | |
1727 </td> | |
1728 | |
1729 <td class='DevStatus DevStatusCollapse'> | |
1730 <table width="100%"> | |
1731 <tr> | |
1732 <td class='DevStatusBox'> | |
1733 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11871", event); return false;' | |
1734 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11871' | |
1735 target="_blank"></a> | |
1736 </td> | |
1737 <td class='DevStatusBox'> | |
1738 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6045", event); return false;' | |
1739 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests16045' | |
1740 target="_blank"></a> | |
1741 </td> | |
1742 <td class='DevStatusBox'> | |
1743 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=4628", event); return false;' | |
1744 title='ASAN Tests (2) build successful' class='DevStatusBox succe
ss TagASANTests24628' | |
1745 target="_blank"></a> | |
1746 </td> | |
1747 | |
1748 </tr> | |
1749 </table> | |
1750 </td> | |
1751 </tr> | |
1752 | |
1753 <tr> | |
1754 <td colspan="3" class='DevComment '> | |
1755 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 | |
1756 </td> | |
1757 </tr> | |
1758 | |
1759 | |
1760 | |
1761 <tr class='DevStatusSpacing'> | |
1762 <td> | |
1763 </td> | |
1764 </tr> | |
1765 | |
1766 <tr> | |
1767 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1768 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122827" t
arget="_blank">122827</a> | |
1769 </td> | |
1770 <td class='DevName Alt' width="1%"> | |
1771 jam<span style="display:none">ohnoyoudont</span>@chromium.org | |
1772 </td> | |
1773 | |
1774 <td class='DevStatus Alt DevStatusCollapse'> | |
1775 <table width="100%"> | |
1776 <tr> | |
1777 <td class='DevStatusBox'> | |
1778 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11871", event); return false;' | |
1779 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11871' | |
1780 target="_blank"></a> | |
1781 </td> | |
1782 <td class='DevStatusBox'> | |
1783 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6045", event); return false;' | |
1784 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests16045' | |
1785 target="_blank"></a> | |
1786 </td> | |
1787 <td class='DevStatusBox'> | |
1788 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=4628", event); return false;' | |
1789 title='ASAN Tests (2) build successful' class='DevStatusBox succe
ss TagASANTests24628' | |
1790 target="_blank"></a> | |
1791 </td> | |
1792 | |
1793 </tr> | |
1794 </table> | |
1795 </td> | |
1796 </tr> | |
1797 | |
1798 <tr> | |
1799 <td colspan="3" class='DevComment Alt'> | |
1800 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 | |
1801 </td> | |
1802 </tr> | |
1803 | |
1804 | |
1805 | |
1806 <tr class='DevStatusSpacing'> | |
1807 <td> | |
1808 </td> | |
1809 </tr> | |
1810 | |
1811 <tr> | |
1812 <td class='DevRev DevRevCollapse' width="1%"> | |
1813 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122826" t
arget="_blank">122826</a> | |
1814 </td> | |
1815 <td class='DevName ' width="1%"> | |
1816 grunell<span style="display:none">ohnoyoudont</span>@chromium.org | |
1817 </td> | |
1818 | |
1819 <td class='DevStatus DevStatusCollapse'> | |
1820 <table width="100%"> | |
1821 <tr> | |
1822 <td class='DevStatusBox'> | |
1823 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11870", event); return false;' | |
1824 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11870' | |
1825 target="_blank"></a> | |
1826 </td> | |
1827 <td class='DevStatusBox'> | |
1828 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6044", event); return false;' | |
1829 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests16044' | |
1830 target="_blank"></a> | |
1831 </td> | |
1832 <td class='DevStatusBox'> | |
1833 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=4628", event); return false;' | |
1834 title='ASAN Tests (2) build successful' class='DevStatusBox succe
ss TagASANTests24628' | |
1835 target="_blank"></a> | |
1836 </td> | |
1837 | |
1838 </tr> | |
1839 </table> | |
1840 </td> | |
1841 </tr> | |
1842 | |
1843 <tr> | |
1844 <td colspan="3" class='DevComment '> | |
1845 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 | |
1846 </td> | |
1847 </tr> | |
1848 | |
1849 | |
1850 | |
1851 <tr class='DevStatusSpacing'> | |
1852 <td> | |
1853 </td> | |
1854 </tr> | |
1855 | |
1856 <tr> | |
1857 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1858 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122825" t
arget="_blank">122825</a> | |
1859 </td> | |
1860 <td class='DevName Alt' width="1%"> | |
1861 rnk<span style="display:none">ohnoyoudont</span>@chromium.org | |
1862 </td> | |
1863 | |
1864 <td class='DevStatus Alt DevStatusCollapse'> | |
1865 <table width="100%"> | |
1866 <tr> | |
1867 <td class='DevStatusBox'> | |
1868 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11869", event); return false;' | |
1869 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11869' | |
1870 target="_blank"></a> | |
1871 </td> | |
1872 <td class='DevStatusBox'> | |
1873 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6043", event); return false;' | |
1874 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests16043' | |
1875 target="_blank"></a> | |
1876 </td> | |
1877 <td class='DevStatusBox'> | |
1878 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=4627", event); return false;' | |
1879 title='ASAN Tests (2) build successful' class='DevStatusBox succe
ss TagASANTests24627' | |
1880 target="_blank"></a> | |
1881 </td> | |
1882 | |
1883 </tr> | |
1884 </table> | |
1885 </td> | |
1886 </tr> | |
1887 | |
1888 <tr> | |
1889 <td colspan="3" class='DevComment Alt'> | |
1890 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 | |
1891 </td> | |
1892 </tr> | |
1893 | |
1894 | |
1895 | |
1896 <tr class='DevStatusSpacing'> | |
1897 <td> | |
1898 </td> | |
1899 </tr> | |
1900 | |
1901 <tr> | |
1902 <td class='DevRev DevRevCollapse' width="1%"> | |
1903 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122824" t
arget="_blank">122824</a> | |
1904 </td> | |
1905 <td class='DevName ' width="1%"> | |
1906 junov<span style="display:none">ohnoyoudont</span>@chromium.org | |
1907 </td> | |
1908 | |
1909 <td class='DevStatus DevStatusCollapse'> | |
1910 <table width="100%"> | |
1911 <tr> | |
1912 <td class='DevStatusBox'> | |
1913 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=11868", event); return false;' | |
1914 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder11868' | |
1915 target="_blank"></a> | |
1916 </td> | |
1917 <td class='DevStatusBox'> | |
1918 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=6042", event); return false;' | |
1919 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests16042' | |
1920 target="_blank"></a> | |
1921 </td> | |
1922 <td class='DevStatusBox'> | |
1923 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=4626", event); return false;' | |
1924 title='ASAN Tests (2) build successful' class='DevStatusBox succe
ss TagASANTests24626' | |
1925 target="_blank"></a> | |
1926 </td> | |
1927 | |
1928 </tr> | |
1929 </table> | |
1930 </td> | |
1931 </tr> | |
1932 | |
1933 <tr> | |
1934 <td colspan="3" class='DevComment '> | |
1935 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 | |
1936 </td> | |
1937 </tr> | |
1938 | |
1939 | |
1940 | |
1941 <tr class='DevStatusSpacing'> | |
1942 <td> | |
1943 </td> | |
1944 </tr> | |
1945 | |
1946 </table> | |
1947 </div> | |
1948 | |
1949 | |
1950 <div id="divBox" onmouseout="if (checkMouseLeave(this, event)) this.style.displa
y = 'None'" class="BuildWaterfall"> | |
1951 </div> | |
1952 | |
1953 | |
1954 <iframe id="frameBox" style="display: none;"></iframe> | |
1955 | |
1956 <script type="text/javascript"> | |
1957 // replace 'onload="updateDiv(event);" with this, as iframe doesn't have onload
event in xhtml | |
1958 window.addEventListener("load", function() { | |
1959 document.getElementById('frameBox').onload = function(event) { | |
1960 updateDiv(event); | |
1961 }; | |
1962 }, false); | |
1963 </script> | |
1964 | |
1965 </div><div class="footer" style="clear:both"> | |
1966 <hr/> | |
1967 [ <a class='collapse' href='#' OnClick='collapse(); return false;'>collapse</a
> | |
1968 <a class='uncollapse' href='#' OnClick='uncollapse(); return false;'>un-collap
se</a> | |
1969 <a class='merge' href="#" OnClick="merge(); return false;">merge</a> | |
1970 <a class='unmerge' style='display: none' href="#" OnClick="unmerge(); return f
alse;">un-merge</a> ] | |
1971 <p>Debug info: {'revision_final': 25, 'builds_scanned': 120, 'source_all': 25,
'source_len': 25, 'last_revision': u'122824', 'from_cache': 56, 'added_blocks':
0, 'load_time': 0.27859807014465332}</p> | |
1972 </div> | |
1973 </body> | |
1974 </html> | |
OLD | NEW |