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.appspot.com/p/chromium/sheriff.
js'></script>,<br> | |
489 <script src='http://chromium-build.appspot.com/p/chromium/sheriff_
memory.js'></script>(Memory), | |
490 <script src='http://chromium-build.appspot.com/p/chromium/sheriff_
nacl.js'></script>(NaCl),<br> | |
491 <script src='http://chromium-build.appspot.com/p/chromium/sheriff_
perf.js'></script>(Perf), | |
492 <script src='http://chromium-build.appspot.com/p/chromium/sheriff_
cros_mtv.js'></script>, | |
493 <script src='http://chromium-build.appspot.com/p/chromium/sheriff_
cros_nonmtv.js'></script>(CrOS),<br> | |
494 <script src='http://chromium-build.appspot.com/p/chromium/sheriff_
android.js'></script>(Android),<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>Gardeners:</b> | |
501 </td> | |
502 <td> | |
503 <script src='http://chromium-build.appspot.com/p/chromium/sheriff_
webkit.js'></script>(WebKit), | |
504 <script src='http://chromium-build.appspot.com/p/chromium/sheriff_
cr_cros_gardeners.js'></script> | |
505 (<a href="http://dev.chromium.org/developers/tree-sheriffs/chrome-
in-chromeos-gardening">ChromeOS</a>) | |
506 </td> | |
507 </tr> | |
508 <tr> | |
509 <td style="text-align: right;"> | |
510 <b>Navigate:</b> | |
511 </td> | |
512 <td colspan="2"> | |
513 <script> | |
514 document.write([ | |
515 a("http://dev.chromium.org/developers/testing/chromium-build-inf
rastructure/tour-of-the-chromium-buildbot", "about", ""), | |
516 a("./waterfall/help", "customize", ""), | |
517 a("./waterfall", "waterfall", ""), | |
518 a("./console", "console", ""), | |
519 a("../tryserver.chromium/waterfall", "try", ""), | |
520 aView("../chromium.fyi", "", "experimental"), | |
521 a("./waterfall?show_events=true&failures_only=true", "failures",
""), | |
522 aView("../chromium.memory", "", "memory"), | |
523 aView("../chromium.memory.fyi", "", "memory fyi"), | |
524 aView("../chromium.chromiumos", "", "chromiumos chrome"), | |
525 aView("../chromiumos", "", "chromiumos team"), | |
526 aView("../client.nacl", "", "NaCl")].join(' | ')); | |
527 </script> | |
528 </td> | |
529 </tr> | |
530 </table> | |
531 </td> | |
532 <td width="1" bgcolor="#CCCCCC"> | |
533 </td> | |
534 <td width="1%"> | |
535 </td> | |
536 <td width="70%"> | |
537 <table width="100%"> | |
538 <script language="javascript"> | |
539 c.chromium = ''; | |
540 c.chromium_chromiumos = ''; | |
541 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'; | |
542 c.memory = ''; | |
543 c.memory_fyi = ''; | |
544 c.perf = ''; | |
545 c.cros = ''; | |
546 c.chrome = ''; | |
547 c.lkgr = ''; | |
548 c.pyauto = ''; | |
549 | |
550 c.status = '../chromium'; | |
551 c.status_cros = '../chromium.chromiumos'; | |
552 c.status_webkit = '../chromium.webkit'; | |
553 c.status_memory = '../chromium.memory'; | |
554 c.status_memory_fyi = '../chromium.memory.fyi'; | |
555 c.status_chrome = '../chromium.chrome'; | |
556 c.status_perf = '../chromium.perf'; | |
557 c.status_lkgr = '../chromium.lkgr'; | |
558 c.status_pyauto = '../chromium.pyauto'; | |
559 | |
560 /** | |
561 * Builds a reference for the iframe with boxes. | |
562 * @param {String} x the name of the waterfall. | |
563 * @returns {String} The URL. | |
564 */ | |
565 function BarUrl(x) { | |
566 return 'http://chromium-build.appspot.com/p/' + x + | |
567 '/horizontal_one_box_per_builder'; | |
568 } | |
569 c.bar = BarUrl('chromium') | |
570 c.bar_webkit = 'http://build.chromium.org/p/chromium.webkit/horizont
al_one_box_per_builder'; | |
571 c.bar_memory = BarUrl('chromium.memory'); | |
572 c.bar_memory_fyi = BarUrl('chromium.memory.fyi'); | |
573 c.bar_perf = BarUrl('chromium.perf'); | |
574 c.bar_chrome = BarUrl('chromium.chrome'); | |
575 c.bar_lkgr = BarUrl('chromium.lkgr'); | |
576 c.bar_pyauto = BarUrl('chromium.pyauto'); | |
577 c.bar_cros = BarUrl('chromium.chromiumos'); | |
578 | |
579 | |
580 /** | |
581 * Joins URL and search terms. | |
582 * @param {String} type The Url without the cgi search portion. | |
583 * @param {String} content The parameters for the sub-selection | |
584 * inside the master. Optional. | |
585 * @returns {String} A completed URL. | |
586 */ | |
587 function GetUrl(type, content) { | |
588 return type + search(content); | |
589 } | |
590 | |
591 /** | |
592 * Callback to replace the LKGR link with one that identifies | |
593 * the current revision for the LKGR. | |
594 */ | |
595 function DisplayLKGR() { | |
596 var xmlHttp = new XMLHttpRequest(); | |
597 var lkgrPath = c.status_lkgr + | |
598 '/json/builders/Linux%20x64/builds/-1?as_text=1'; | |
599 var lkgrLink = document.getElementById('LKGRLink'); | |
600 xmlHttp.open('GET', lkgrPath, false); | |
601 xmlHttp.send(null); | |
602 if (xmlHttp.readyState == 4 && xmlHttp.status == 200) { | |
603 var buildData; | |
604 if (typeof (JSON) !== 'undefined' && | |
605 typeof (JSON.parse) === 'function') { | |
606 buildData = JSON.parse(xmlHttp.responseText); | |
607 } else { | |
608 buildData = eval('(' + xmlHttp.responseText + ')'); | |
609 } | |
610 var properties = buildData['properties']; | |
611 for (var i = 0; i < properties.length; i++) { | |
612 if (properties[i][0] == 'got_revision') { | |
613 lkgrLink.innerHTML = 'LKGR<br>(' + properties[i][1] + ')'; | |
614 return; | |
615 } | |
616 } | |
617 } | |
618 } | |
619 | |
620 c.default_iframe_properties = [ | |
621 'width="100%"', | |
622 'height="20"', | |
623 'frameborder="0"', | |
624 'scrolling="no"', | |
625 ].join(' '); | |
626 | |
627 /** | |
628 * The most detailed specification of a builder bar with boxes. | |
629 * Reutrns an HTMLstring with 2 <td>s | |
630 * @param {String} status_url URL portion for the title link. | |
631 * @param {String} bar_url URL portion for the array of boxes. | |
632 * @param {String} content specification for the references, e.g.. | |
633 * @param {String} name what to call this bar. | |
634 * @param {String} bar_properties extra attributes for the array | |
635 * of boxes portion. | |
636 * @param {String} link_properties extra attributes for the name | |
637 * portion that is a link. | |
638 * @returns {String} | |
639 */ | |
640 function HTMLBaseBar(status_url, bar_url, content, name, | |
641 bar_properties, link_properties) { | |
642 return td('', | |
643 a(GetUrl(status_url, content), name, | |
644 link_properties)) + | |
645 td(bar_properties, | |
646 iFrame(c.default_iframe_properties, | |
647 GetUrl(bar_url, content))); | |
648 } | |
649 | |
650 /** | |
651 * The more common specification of a builder bar with boxes. | |
652 * Presume to take an entire row. | |
653 * @param {String} status_url URL portion for the title link. | |
654 * @param {String} bar_url URL portion for the array of boxes. | |
655 * @param {String} content specification for the references, e.g.. | |
656 * @param {String} name what to call this bar. | |
657 * @returns {String} | |
658 */ | |
659 function HTMLBar(status_url, bar_url, content, name) { | |
660 return tr(HTMLBaseBar(status_url, bar_url, content, name, | |
661 'width="99%" colspan=9', '')); | |
662 } | |
663 | |
664 /** | |
665 * A specification of a builder bar with boxes, which is one of | |
666 * multiple in a row. | |
667 * Note that since these are elements of a table, percents | |
668 * can be irrelevant to the final layout. | |
669 * @param {String} status_url URL portion for the title link. | |
670 * @param {String} bar_url URL portion for the array of boxes. | |
671 * @param {String} content specification for the references, e.g.. | |
672 * @param {String} name what to call this bar. | |
673 * @param {String} pc percent of the line to allocat to the boxes. | |
674 * @returns {String} | |
675 */ | |
676 function HTMLSubBar(status_url, bar_url, content, name, pc) { | |
677 return HTMLBaseBar(status_url, bar_url, content, name, | |
678 'width="' + pc + '"', ''); | |
679 } | |
680 | |
681 document.write(tr(td( | |
682 'colspan=10 width="99%"', | |
683 div( | |
684 'class="closerbox" width="100%"', | |
685 div('class="title" width="100%" height="10px"', | |
686 a('http://chromium-status.appspot.com', 'Tree closers')) + | |
687 table( | |
688 'width="100%"', | |
689 HTMLBar(c.status, c.bar, c.chromium, 'Chromium') + | |
690 tr(HTMLSubBar(c.status_cros, c.bar_cros, c.cros, | |
691 'ChromiumOS', '30%') + | |
692 HTMLSubBar(c.status_chrome, c.bar_chrome, c.chrome, | |
693 'Official', '35%') + | |
694 HTMLSubBar(c.status_memory, c.bar_memory, c.memory, | |
695 'Memory', '25%'))))))); | |
696 | |
697 document.write(tr( | |
698 HTMLBaseBar(c.status_webkit, c.bar_webkit, c.webkit, | |
699 'Webkit', 'colspan=3', '') + | |
700 HTMLBaseBar(c.status_perf, c.bar_perf, c.perf, | |
701 'Perf', 'colspan=5', ''))); | |
702 | |
703 document.write(tr( | |
704 HTMLBaseBar(c.status_lkgr, c.bar_lkgr, c.lkgr, | |
705 'LKGR', 'width="10%"', 'id="LKGRLink"') + | |
706 HTMLBaseBar(c.status_pyauto, c.bar_pyauto, c.pyauto, | |
707 'PyAuto', 'width="15%"', '') + | |
708 HTMLBaseBar(c.status_memory_fyi, c.bar_memory_fyi, c.memory_fyi, | |
709 'Memory<br>FYI', 'width="50%" colspan=5', ''))); | |
710 | |
711 setTimeout('DisplayLKGR()', 100); | |
712 </script> | |
713 </table> | |
714 </td> | |
715 </tr> | |
716 </table> | |
717 </center> | |
718 | |
719 </div> | |
720 <hr/> | |
721 | |
722 <div class="content"> | |
723 <div align="center"> | |
724 <table width="95%" class="Grid" border="0" cellspacing="0"> | |
725 <tr> | |
726 <td width="33%" align="left" class="left_align"> | |
727 </td> | |
728 <td width="33%" align="center" class="center_align"> | |
729 <div align="center"> | |
730 <table class="info"> | |
731 <tr> | |
732 <td>Legend: </td> | |
733 <td class='legend success' title='All tests passed'>Passed</td> | |
734 <td class='legend failure' title='There is a new failure. Take a l
ook!'>Failed</td> | |
735 <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> | |
736 <td class='legend running' title='The tests are still running'>Run
ning</td> | |
737 <td class='legend exception' title='Something went wrong with the
test, there is no result'>Exception</td> | |
738 <td class='legend offline' title='The builder is offline, as there
are no slaves connected to it'>Offline</td> | |
739 <td class='legend notstarted' title='No result yet.'>No data<
/td> | |
740 </tr> | |
741 </table> | |
742 </div> | |
743 </td> | |
744 <td width="33%" align="right" class="right_align"> | |
745 <script type="text/javascript"> | |
746 // <![CDATA[ | |
747 function reload_page() { | |
748 name_value = document.getElementById('namebox').value | |
749 if (document.location.href.lastIndexOf('?') == -1) | |
750 document.location.href = document.location.href+ '?name=' + name_v
alue; | |
751 else | |
752 document.location.href = document.location.href+ '&name=' + name_v
alue; | |
753 } | |
754 // ]]> | |
755 </script> | |
756 <input id='namebox' name='name' type='text' style='color:#999;' | |
757 onblur='this.value = this.value || this.defaultValue; this.style.col
or = "#999";' | |
758 onfocus='this.value=""; this.style.color = "#000";' | |
759 value='Personalized for...'/> | |
760 <input type='submit' value='Go' onclick='reload_page()'/> | |
761 </td> | |
762 </tr> | |
763 </table> | |
764 </div> | |
765 | |
766 <br/> | |
767 | |
768 | |
769 <div align="center"> | |
770 <table width="96%" class="ConsoleData"> | |
771 | |
772 | |
773 <tr> | |
774 <td width="1%"> | |
775 </td> | |
776 <td width="1%"> | |
777 </td> | |
778 <td class='DevSlave Alt last'> | |
779 <table width="100%"> | |
780 <tr> | |
781 | |
782 <td class='DevSlaveBox'> | |
783 <a href='./builders/ASAN%20Builder' title='ASAN Builder' class='DevS
laveBox success' target="_blank"> | |
784 </a> | |
785 </td> | |
786 | |
787 <td class='DevSlaveBox'> | |
788 <a href='./builders/ASAN%20Tests%20%281%29' title='ASAN Tests (1)' c
lass='DevSlaveBox success' target="_blank"> | |
789 </a> | |
790 </td> | |
791 | |
792 <td class='DevSlaveBox'> | |
793 <a href='./builders/ASAN%20Tests%20%282%29' title='ASAN Tests (2)' c
lass='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=127236" t
arget="_blank">127236</a> | |
806 </td> | |
807 <td class='DevName ' width="1%"> | |
808 achuith<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='ASAN Builder' 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='ASAN Tests (1)' 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='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
827 target="_blank"></a> | |
828 </td> | |
829 | |
830 </tr> | |
831 </table> | |
832 </td> | |
833 </tr> | |
834 | |
835 <tr> | |
836 <td colspan="3" class='DevComment '> | |
837 Enable tap to click by default on lumpy.<br/><br/>BUG=NONE<br/>TEST=Tap to
click should be on by default on lumpy.<br/>Review URL: https://chromiumcoderev
iew.appspot.com/9705080 | |
838 </td> | |
839 </tr> | |
840 | |
841 | |
842 | |
843 <tr class='DevStatusSpacing'> | |
844 <td> | |
845 </td> | |
846 </tr> | |
847 | |
848 <tr> | |
849 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
850 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127234" t
arget="_blank">127234</a> | |
851 </td> | |
852 <td class='DevName Alt' width="1%"> | |
853 michaelbai<span style="display:none">ohnoyoudont</span>@chromium.org | |
854 </td> | |
855 | |
856 <td class='DevStatus Alt DevStatusCollapse'> | |
857 <table width="100%"> | |
858 <tr> | |
859 <td class='DevStatusBox'> | |
860 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
861 title='ASAN Builder' class='DevStatusBox notstarted ' | |
862 target="_blank"></a> | |
863 </td> | |
864 <td class='DevStatusBox'> | |
865 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
866 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
867 target="_blank"></a> | |
868 </td> | |
869 <td class='DevStatusBox'> | |
870 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
871 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
872 target="_blank"></a> | |
873 </td> | |
874 | |
875 </tr> | |
876 </table> | |
877 </td> | |
878 </tr> | |
879 | |
880 <tr> | |
881 <td colspan="3" class='DevComment Alt'> | |
882 The SQLHandler implementation for urls table.<br/><br/><br/>BUG=<br/>TEST=
<br/><br/><br/>Review URL: http://codereview.chromium.org/9682002 | |
883 </td> | |
884 </tr> | |
885 | |
886 | |
887 | |
888 <tr class='DevStatusSpacing'> | |
889 <td> | |
890 </td> | |
891 </tr> | |
892 | |
893 <tr> | |
894 <td class='DevRev DevRevCollapse' width="1%"> | |
895 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127233" t
arget="_blank">127233</a> | |
896 </td> | |
897 <td class='DevName ' width="1%"> | |
898 dmikurube<span style="display:none">ohnoyoudont</span>@chromium.org | |
899 </td> | |
900 | |
901 <td class='DevStatus DevStatusCollapse'> | |
902 <table width="100%"> | |
903 <tr> | |
904 <td class='DevStatusBox'> | |
905 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
906 title='ASAN Builder' class='DevStatusBox notstarted ' | |
907 target="_blank"></a> | |
908 </td> | |
909 <td class='DevStatusBox'> | |
910 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
911 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
912 target="_blank"></a> | |
913 </td> | |
914 <td class='DevStatusBox'> | |
915 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
916 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
917 target="_blank"></a> | |
918 </td> | |
919 | |
920 </tr> | |
921 </table> | |
922 </td> | |
923 </tr> | |
924 | |
925 <tr> | |
926 <td colspan="3" class='DevComment '> | |
927 Add a PyAuto API to dump heap profiles. (retry of r127070)<br/><br/><br/>B
UG=114301<br/>TEST=none<br/><br/>Review URL: http://codereview.chromium.org/9704
076 | |
928 </td> | |
929 </tr> | |
930 | |
931 | |
932 | |
933 <tr class='DevStatusSpacing'> | |
934 <td> | |
935 </td> | |
936 </tr> | |
937 | |
938 <tr> | |
939 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
940 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127232" t
arget="_blank">127232</a> | |
941 </td> | |
942 <td class='DevName Alt' width="1%"> | |
943 fischman<span style="display:none">ohnoyoudont</span>@chromium.org | |
944 </td> | |
945 | |
946 <td class='DevStatus Alt DevStatusCollapse'> | |
947 <table width="100%"> | |
948 <tr> | |
949 <td class='DevStatusBox'> | |
950 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
951 title='ASAN Builder' class='DevStatusBox notstarted ' | |
952 target="_blank"></a> | |
953 </td> | |
954 <td class='DevStatusBox'> | |
955 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
956 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
957 target="_blank"></a> | |
958 </td> | |
959 <td class='DevStatusBox'> | |
960 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
961 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
962 target="_blank"></a> | |
963 </td> | |
964 | |
965 </tr> | |
966 </table> | |
967 </td> | |
968 </tr> | |
969 | |
970 <tr> | |
971 <td colspan="3" class='DevComment Alt'> | |
972 Don't trigger second request on missing instance size in Content-Range
.<br/><br/>Previously we were relying on the parser for multipart/x-mixed-replac
e to parse Content-Range. This CL instead introduces a parser that impleme
nts HTTP/1.1 (allowing instance-size to be "*").<br/><br/>BUG=104795<br/
><br/>Review URL: http://codereview.chromium.org/9703073 | |
973 </td> | |
974 </tr> | |
975 | |
976 | |
977 | |
978 <tr class='DevStatusSpacing'> | |
979 <td> | |
980 </td> | |
981 </tr> | |
982 | |
983 <tr> | |
984 <td class='DevRev DevRevCollapse' width="1%"> | |
985 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127231" t
arget="_blank">127231</a> | |
986 </td> | |
987 <td class='DevName ' width="1%"> | |
988 oshima<span style="display:none">ohnoyoudont</span>@chromium.org | |
989 </td> | |
990 | |
991 <td class='DevStatus DevStatusCollapse'> | |
992 <table width="100%"> | |
993 <tr> | |
994 <td class='DevStatusBox'> | |
995 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
996 title='ASAN Builder' class='DevStatusBox notstarted ' | |
997 target="_blank"></a> | |
998 </td> | |
999 <td class='DevStatusBox'> | |
1000 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1001 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
1002 target="_blank"></a> | |
1003 </td> | |
1004 <td class='DevStatusBox'> | |
1005 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1006 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
1007 target="_blank"></a> | |
1008 </td> | |
1009 | |
1010 </tr> | |
1011 </table> | |
1012 </td> | |
1013 </tr> | |
1014 | |
1015 <tr> | |
1016 <td colspan="3" class='DevComment '> | |
1017 Native bounds support to host windows.<br/>* Moved SingleMonitorManager in
to separate file. This is a default<br/>MonitorManager and creates RootWindow fo
r PrimaryMonitor.<br/>* Added MonitorObserver and moved monitor change logic to
ash.<br/>* MultiMonitorManager class and its layout logic will live in ash too.<
br/>* Added ability to move host window so that we can re-arrange root window wh
en<br/>switching primary monitor.<br/>* Removed monitor_manager_x11, which I com
mitted by accident.<br/>* Use (0,0) for monitor/workarea bounds because the coor
dinate isn't translated yet<br/> for non primary screens.<br/><br/>BUG
=115510<br/>TEST=none<br/><br/>Review URL: https://chromiumcodereview.appspot.co
m/9703083 | |
1018 </td> | |
1019 </tr> | |
1020 | |
1021 | |
1022 | |
1023 <tr class='DevStatusSpacing'> | |
1024 <td> | |
1025 </td> | |
1026 </tr> | |
1027 | |
1028 <tr> | |
1029 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1030 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127230" t
arget="_blank">127230</a> | |
1031 </td> | |
1032 <td class='DevName Alt' width="1%"> | |
1033 pkasting<span style="display:none">ohnoyoudont</span>@chromium.org | |
1034 </td> | |
1035 | |
1036 <td class='DevStatus Alt DevStatusCollapse'> | |
1037 <table width="100%"> | |
1038 <tr> | |
1039 <td class='DevStatusBox'> | |
1040 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1041 title='ASAN Builder' class='DevStatusBox notstarted ' | |
1042 target="_blank"></a> | |
1043 </td> | |
1044 <td class='DevStatusBox'> | |
1045 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1046 title='ASAN Tests (1)' 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='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
1052 target="_blank"></a> | |
1053 </td> | |
1054 | |
1055 </tr> | |
1056 </table> | |
1057 </td> | |
1058 </tr> | |
1059 | |
1060 <tr> | |
1061 <td colspan="3" class='DevComment Alt'> | |
1062 Clean up first run:<br/><br/>* Replace the idea of a FirstRunBrowserProces
s, which existed solely to prevent a couple of classes from trying to make netwo
rk connections, with passing the "disable background networking" switch
to the relevant process.<br/>* Eliminate a bunch of unused machinery to try and
parent the import progress window. This was always just parented to NULL.<
br/>* A few other small cleanups in first_run_win.cc.<br/><br/>BUG=none<br/>TEST
=none<br/>Review URL: https://chromiumcodereview.appspot.com/9702103 | |
1063 </td> | |
1064 </tr> | |
1065 | |
1066 | |
1067 | |
1068 <tr class='DevStatusSpacing'> | |
1069 <td> | |
1070 </td> | |
1071 </tr> | |
1072 | |
1073 <tr> | |
1074 <td class='DevRev DevRevCollapse' width="1%"> | |
1075 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127229" t
arget="_blank">127229</a> | |
1076 </td> | |
1077 <td class='DevName ' width="1%"> | |
1078 rohitbm<span style="display:none">ohnoyoudont</span>@chromium.org | |
1079 </td> | |
1080 | |
1081 <td class='DevStatus DevStatusCollapse'> | |
1082 <table width="100%"> | |
1083 <tr> | |
1084 <td class='DevStatusBox'> | |
1085 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1086 title='ASAN Builder' class='DevStatusBox notstarted ' | |
1087 target="_blank"></a> | |
1088 </td> | |
1089 <td class='DevStatusBox'> | |
1090 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1091 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
1092 target="_blank"></a> | |
1093 </td> | |
1094 <td class='DevStatusBox'> | |
1095 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1096 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
1097 target="_blank"></a> | |
1098 </td> | |
1099 | |
1100 </tr> | |
1101 </table> | |
1102 </td> | |
1103 </tr> | |
1104 | |
1105 <tr> | |
1106 <td colspan="3" class='DevComment '> | |
1107 Updating the Netflix plugin version info for plugins check test.<br/>Revie
w URL: https://chromiumcodereview.appspot.com/9704100 | |
1108 </td> | |
1109 </tr> | |
1110 | |
1111 | |
1112 | |
1113 <tr class='DevStatusSpacing'> | |
1114 <td> | |
1115 </td> | |
1116 </tr> | |
1117 | |
1118 <tr> | |
1119 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1120 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127228" t
arget="_blank">127228</a> | |
1121 </td> | |
1122 <td class='DevName Alt' width="1%"> | |
1123 elijahtaylor<span style="display:none">ohnoyoudont</span>@google.com | |
1124 </td> | |
1125 | |
1126 <td class='DevStatus Alt DevStatusCollapse'> | |
1127 <table width="100%"> | |
1128 <tr> | |
1129 <td class='DevStatusBox'> | |
1130 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=14390", event); return false;' | |
1131 title='ASAN Builder ETA: 0s' class='DevStatusBox running TagASAN
Builder14390' | |
1132 target="_blank"></a> | |
1133 </td> | |
1134 <td class='DevStatusBox'> | |
1135 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1136 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
1137 target="_blank"></a> | |
1138 </td> | |
1139 <td class='DevStatusBox'> | |
1140 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1141 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
1142 target="_blank"></a> | |
1143 </td> | |
1144 | |
1145 </tr> | |
1146 </table> | |
1147 </td> | |
1148 </tr> | |
1149 | |
1150 <tr> | |
1151 <td colspan="3" class='DevComment Alt'> | |
1152 Mono builder cleanup:<br/><br/>- restructure build scripts to allow 2 buil
ds + 1 archive per checkin<br/>- build 32- and 64-bit on one bot so a full packa
ge is built<br/>- fix paths in tarball to be relative (lib/, lib32/, include/, e
tc)<br/><br/>BUG=115363<br/>TEST=bots,manual<br/>Review URL: https://chromiumcod
ereview.appspot.com/9689021 | |
1153 </td> | |
1154 </tr> | |
1155 | |
1156 | |
1157 | |
1158 <tr class='DevStatusSpacing'> | |
1159 <td> | |
1160 </td> | |
1161 </tr> | |
1162 | |
1163 <tr> | |
1164 <td class='DevRev DevRevCollapse' width="1%"> | |
1165 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127227" t
arget="_blank">127227</a> | |
1166 </td> | |
1167 <td class='DevName ' width="1%"> | |
1168 reveman<span style="display:none">ohnoyoudont</span>@google.com | |
1169 </td> | |
1170 | |
1171 <td class='DevStatus DevStatusCollapse'> | |
1172 <table width="100%"> | |
1173 <tr> | |
1174 <td class='DevStatusBox'> | |
1175 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=14390", event); return false;' | |
1176 title='ASAN Builder ETA: 0s' class='DevStatusBox running TagASAN
Builder14390' | |
1177 target="_blank"></a> | |
1178 </td> | |
1179 <td class='DevStatusBox'> | |
1180 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1181 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
1182 target="_blank"></a> | |
1183 </td> | |
1184 <td class='DevStatusBox'> | |
1185 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1186 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
1187 target="_blank"></a> | |
1188 </td> | |
1189 | |
1190 </tr> | |
1191 </table> | |
1192 </td> | |
1193 </tr> | |
1194 | |
1195 <tr> | |
1196 <td colspan="3" class='DevComment '> | |
1197 Avoid using skia::ScopedPlatformPaint in RenderTextLinux::EnsureLayout().
This allows RenderTextLinux to be used for rendering to platform independent can
vas.<br/><br/>BUG=111587<br/>TEST=none<br/><br/>Review URL: https://chromiumcode
review.appspot.com/9665011 | |
1198 </td> | |
1199 </tr> | |
1200 | |
1201 | |
1202 | |
1203 <tr class='DevStatusSpacing'> | |
1204 <td> | |
1205 </td> | |
1206 </tr> | |
1207 | |
1208 <tr> | |
1209 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1210 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127226" t
arget="_blank">127226</a> | |
1211 </td> | |
1212 <td class='DevName Alt' width="1%"> | |
1213 pkasting<span style="display:none">ohnoyoudont</span>@chromium.org | |
1214 </td> | |
1215 | |
1216 <td class='DevStatus Alt DevStatusCollapse'> | |
1217 <table width="100%"> | |
1218 <tr> | |
1219 <td class='DevStatusBox'> | |
1220 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=14390", event); return false;' | |
1221 title='ASAN Builder ETA: 0s' class='DevStatusBox running TagASAN
Builder14390' | |
1222 target="_blank"></a> | |
1223 </td> | |
1224 <td class='DevStatusBox'> | |
1225 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1226 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
1227 target="_blank"></a> | |
1228 </td> | |
1229 <td class='DevStatusBox'> | |
1230 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1231 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
1232 target="_blank"></a> | |
1233 </td> | |
1234 | |
1235 </tr> | |
1236 </table> | |
1237 </td> | |
1238 </tr> | |
1239 | |
1240 <tr> | |
1241 <td colspan="3" class='DevComment Alt'> | |
1242 Clean up chrome/browser/search_engines/: <br/><br/>* Remove the notion of
SearchEngineType from TemplateURL. It's now solely the domain of the prepopu
late data. <br/>* Simplify TemplateURL IPC code. <br/>* Remove TemplateURLRef::S
etGoogleBaseURL(), which was an unnecessary passthrough to another public static
function. <br/>* Use "google.*"-like strings consistently for Google ba
se URLs in tests; this will become important later when keyword autogeneration c
hanges to depend on the host being a Google URL. <br/>* Define base SearchTermsD
ata::GetApplicationLocale() and GetRlzParameterValue() implementations and remov
e various similar definitions elsewhere. <br/>* De-inline functions we don't
normally inline (constructors, virtuals, etc.). <br/>* Remove some unnecessary
TemplateURLRef friend declarations. <br/>* Remove TemplateURL::set_prepopulated(
) and add_image_ref() manipulators as all callers were already friends or are no
w. (First of a number of changes that move toward making TemplateURL more immuta
ble so we can then remove "const" from the | |
1243 </td> | |
1244 </tr> | |
1245 | |
1246 | |
1247 | |
1248 <tr class='DevStatusSpacing'> | |
1249 <td> | |
1250 </td> | |
1251 </tr> | |
1252 | |
1253 <tr> | |
1254 <td class='DevRev DevRevCollapse' width="1%"> | |
1255 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127225" t
arget="_blank">127225</a> | |
1256 </td> | |
1257 <td class='DevName ' width="1%"> | |
1258 altimofeev<span style="display:none">ohnoyoudont</span>@chromium.org | |
1259 </td> | |
1260 | |
1261 <td class='DevStatus DevStatusCollapse'> | |
1262 <table width="100%"> | |
1263 <tr> | |
1264 <td class='DevStatusBox'> | |
1265 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=14390", event); return false;' | |
1266 title='ASAN Builder ETA: 0s' class='DevStatusBox running TagASAN
Builder14390' | |
1267 target="_blank"></a> | |
1268 </td> | |
1269 <td class='DevStatusBox'> | |
1270 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1271 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
1272 target="_blank"></a> | |
1273 </td> | |
1274 <td class='DevStatusBox'> | |
1275 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1276 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
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 [cros] Adds OWNERS file for WebUI handlers directory<br/>BUG=none<br/>TEST
=none<br/><br/><br/>Review URL: http://codereview.chromium.org/9714001 | |
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=127224" t
arget="_blank">127224</a> | |
1301 </td> | |
1302 <td class='DevName Alt' width="1%"> | |
1303 erikwright<span style="display:none">ohnoyoudont</span>@chromium.org | |
1304 </td> | |
1305 | |
1306 <td class='DevStatus Alt DevStatusCollapse'> | |
1307 <table width="100%"> | |
1308 <tr> | |
1309 <td class='DevStatusBox'> | |
1310 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=14390", event); return false;' | |
1311 title='ASAN Builder ETA: 0s' class='DevStatusBox running TagASAN
Builder14390' | |
1312 target="_blank"></a> | |
1313 </td> | |
1314 <td class='DevStatusBox'> | |
1315 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1316 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
1317 target="_blank"></a> | |
1318 </td> | |
1319 <td class='DevStatusBox'> | |
1320 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1321 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
1322 target="_blank"></a> | |
1323 </td> | |
1324 | |
1325 </tr> | |
1326 </table> | |
1327 </td> | |
1328 </tr> | |
1329 | |
1330 <tr> | |
1331 <td colspan="3" class='DevComment Alt'> | |
1332 Define a meta-target for the win_cf bot.<br/><br/>BUG=None<br/>TEST=None<b
r/><br/><br/>Review URL: http://codereview.chromium.org/9699122 | |
1333 </td> | |
1334 </tr> | |
1335 | |
1336 | |
1337 | |
1338 <tr class='DevStatusSpacing'> | |
1339 <td> | |
1340 </td> | |
1341 </tr> | |
1342 | |
1343 <tr> | |
1344 <td class='DevRev DevRevCollapse' width="1%"> | |
1345 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127223" t
arget="_blank">127223</a> | |
1346 </td> | |
1347 <td class='DevName ' width="1%"> | |
1348 wez<span style="display:none">ohnoyoudont</span>@chromium.org | |
1349 </td> | |
1350 | |
1351 <td class='DevStatus DevStatusCollapse'> | |
1352 <table width="100%"> | |
1353 <tr> | |
1354 <td class='DevStatusBox'> | |
1355 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=14390", event); return false;' | |
1356 title='ASAN Builder ETA: 0s' class='DevStatusBox running TagASAN
Builder14390' | |
1357 target="_blank"></a> | |
1358 </td> | |
1359 <td class='DevStatusBox'> | |
1360 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1361 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
1362 target="_blank"></a> | |
1363 </td> | |
1364 <td class='DevStatusBox'> | |
1365 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1366 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
1367 target="_blank"></a> | |
1368 </td> | |
1369 | |
1370 </tr> | |
1371 </table> | |
1372 </td> | |
1373 </tr> | |
1374 | |
1375 <tr> | |
1376 <td colspan="3" class='DevComment '> | |
1377 Check explicitly for PPB_VarArrayBuffer v1.0 in C++ wrapper.<br/><br/>BUG=
107398<br/><br/><br/>Review URL: http://codereview.chromium.org/9701090 | |
1378 </td> | |
1379 </tr> | |
1380 | |
1381 | |
1382 | |
1383 <tr class='DevStatusSpacing'> | |
1384 <td> | |
1385 </td> | |
1386 </tr> | |
1387 | |
1388 <tr> | |
1389 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1390 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127218" t
arget="_blank">127218</a> | |
1391 </td> | |
1392 <td class='DevName Alt' width="1%"> | |
1393 rohitbm<span style="display:none">ohnoyoudont</span>@chromium.org | |
1394 </td> | |
1395 | |
1396 <td class='DevStatus Alt DevStatusCollapse'> | |
1397 <table width="100%"> | |
1398 <tr> | |
1399 <td class='DevStatusBox'> | |
1400 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=14389", event); return false;' | |
1401 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder14389' | |
1402 target="_blank"></a> | |
1403 </td> | |
1404 <td class='DevStatusBox'> | |
1405 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1406 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
1407 target="_blank"></a> | |
1408 </td> | |
1409 <td class='DevStatusBox'> | |
1410 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1411 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
1412 target="_blank"></a> | |
1413 </td> | |
1414 | |
1415 </tr> | |
1416 </table> | |
1417 </td> | |
1418 </tr> | |
1419 | |
1420 <tr> | |
1421 <td colspan="3" class='DevComment Alt'> | |
1422 Netflix plugin 1.5.2 is working on all boards, so enabling Netflix perf te
sts.<br/>Review URL: https://chromiumcodereview.appspot.com/9714002 | |
1423 </td> | |
1424 </tr> | |
1425 | |
1426 | |
1427 | |
1428 <tr class='DevStatusSpacing'> | |
1429 <td> | |
1430 </td> | |
1431 </tr> | |
1432 | |
1433 <tr> | |
1434 <td class='DevRev DevRevCollapse' width="1%"> | |
1435 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127217" t
arget="_blank">127217</a> | |
1436 </td> | |
1437 <td class='DevName ' width="1%"> | |
1438 fischman<span style="display:none">ohnoyoudont</span>@chromium.org | |
1439 </td> | |
1440 | |
1441 <td class='DevStatus DevStatusCollapse'> | |
1442 <table width="100%"> | |
1443 <tr> | |
1444 <td class='DevStatusBox'> | |
1445 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=14388", event); return false;' | |
1446 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder14388' | |
1447 target="_blank"></a> | |
1448 </td> | |
1449 <td class='DevStatusBox'> | |
1450 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1451 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
1452 target="_blank"></a> | |
1453 </td> | |
1454 <td class='DevStatusBox'> | |
1455 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1456 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
1457 target="_blank"></a> | |
1458 </td> | |
1459 | |
1460 </tr> | |
1461 </table> | |
1462 </td> | |
1463 </tr> | |
1464 | |
1465 <tr> | |
1466 <td colspan="3" class='DevComment '> | |
1467 Trust servers that claim "Accept-Ranges: bytes" but serve a 200 fo
r Range:0-<br/><br/>BUG=110309<br/><br/><br/>Review URL: http://codereview.chrom
ium.org/9701082 | |
1468 </td> | |
1469 </tr> | |
1470 | |
1471 | |
1472 | |
1473 <tr class='DevStatusSpacing'> | |
1474 <td> | |
1475 </td> | |
1476 </tr> | |
1477 | |
1478 <tr> | |
1479 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1480 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127216" t
arget="_blank">127216</a> | |
1481 </td> | |
1482 <td class='DevName Alt' width="1%"> | |
1483 mpcomplete<span style="display:none">ohnoyoudont</span>@chromium.org | |
1484 </td> | |
1485 | |
1486 <td class='DevStatus Alt DevStatusCollapse'> | |
1487 <table width="100%"> | |
1488 <tr> | |
1489 <td class='DevStatusBox'> | |
1490 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=14388", event); return false;' | |
1491 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder14388' | |
1492 target="_blank"></a> | |
1493 </td> | |
1494 <td class='DevStatusBox'> | |
1495 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1496 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
1497 target="_blank"></a> | |
1498 </td> | |
1499 <td class='DevStatusBox'> | |
1500 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1501 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
1502 target="_blank"></a> | |
1503 </td> | |
1504 | |
1505 </tr> | |
1506 </table> | |
1507 </td> | |
1508 </tr> | |
1509 | |
1510 <tr> | |
1511 <td colspan="3" class='DevComment Alt'> | |
1512 Lazy background pages now load in response to message passing.<br/><br/>I
refactored the pending event stuff so that it handles generic tasks. The<br/>fir
st enqueued task for an extension will start its lazy background page, and<br/>t
asks are run once the page finishes loading. Events and messages now share<br/>t
his mechanism so that either one can activate the page.<br/><br/>BUG=81752<br/>T
EST=no<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9704031 | |
1513 </td> | |
1514 </tr> | |
1515 | |
1516 | |
1517 | |
1518 <tr class='DevStatusSpacing'> | |
1519 <td> | |
1520 </td> | |
1521 </tr> | |
1522 | |
1523 <tr> | |
1524 <td class='DevRev DevRevCollapse' width="1%"> | |
1525 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127215" t
arget="_blank">127215</a> | |
1526 </td> | |
1527 <td class='DevName ' width="1%"> | |
1528 mihaip<span style="display:none">ohnoyoudont</span>@chromium.org | |
1529 </td> | |
1530 | |
1531 <td class='DevStatus DevStatusCollapse'> | |
1532 <table width="100%"> | |
1533 <tr> | |
1534 <td class='DevStatusBox'> | |
1535 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=14388", event); return false;' | |
1536 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder14388' | |
1537 target="_blank"></a> | |
1538 </td> | |
1539 <td class='DevStatusBox'> | |
1540 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1541 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
1542 target="_blank"></a> | |
1543 </td> | |
1544 <td class='DevStatusBox'> | |
1545 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1546 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
1547 target="_blank"></a> | |
1548 </td> | |
1549 | |
1550 </tr> | |
1551 </table> | |
1552 </td> | |
1553 </tr> | |
1554 | |
1555 <tr> | |
1556 <td colspan="3" class='DevComment '> | |
1557 Make ShellWindow subclass BaseWindow, to support the chrome.windows.* exte
nsion APIs<br/><br/>Platform-specific implementations of BaseWindow methods gene
rally mirror those<br/>in BrowserWindowGtk/BrowserWindowCocoa/BrowserView. Brows
erView::FlashFrame is<br/>moved to (Native)Widget, so that it can be used for bo
th browser windows and<br/>shell windows.<br/><br/>Review URL: http://codereview
.chromium.org/9706005 | |
1558 </td> | |
1559 </tr> | |
1560 | |
1561 | |
1562 | |
1563 <tr class='DevStatusSpacing'> | |
1564 <td> | |
1565 </td> | |
1566 </tr> | |
1567 | |
1568 <tr> | |
1569 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1570 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127214" t
arget="_blank">127214</a> | |
1571 </td> | |
1572 <td class='DevName Alt' width="1%"> | |
1573 mpcomplete<span style="display:none">ohnoyoudont</span>@chromium.org | |
1574 </td> | |
1575 | |
1576 <td class='DevStatus Alt DevStatusCollapse'> | |
1577 <table width="100%"> | |
1578 <tr> | |
1579 <td class='DevStatusBox'> | |
1580 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=14387", event); return false;' | |
1581 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder14387' | |
1582 target="_blank"></a> | |
1583 </td> | |
1584 <td class='DevStatusBox'> | |
1585 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1586 title='ASAN Tests (1)' class='DevStatusBox notstarted ' | |
1587 target="_blank"></a> | |
1588 </td> | |
1589 <td class='DevStatusBox'> | |
1590 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1591 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
1592 target="_blank"></a> | |
1593 </td> | |
1594 | |
1595 </tr> | |
1596 </table> | |
1597 </td> | |
1598 </tr> | |
1599 | |
1600 <tr> | |
1601 <td colspan="3" class='DevComment Alt'> | |
1602 Disable AppApiTest.ReloadAppAfterCrash on Mac and Linux due to flaky timeo
uts.<br/><br/>TBR=mihaip<br/>BUG=118502<br/>TEST=no<br/><br/>Review URL: https:/
/chromiumcodereview.appspot.com/9705077 | |
1603 </td> | |
1604 </tr> | |
1605 | |
1606 | |
1607 | |
1608 <tr class='DevStatusSpacing'> | |
1609 <td> | |
1610 </td> | |
1611 </tr> | |
1612 | |
1613 <tr> | |
1614 <td class='DevRev DevRevCollapse' width="1%"> | |
1615 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127213" t
arget="_blank">127213</a> | |
1616 </td> | |
1617 <td class='DevName ' width="1%"> | |
1618 stevenjb<span style="display:none">ohnoyoudont</span>@google.com | |
1619 </td> | |
1620 | |
1621 <td class='DevStatus DevStatusCollapse'> | |
1622 <table width="100%"> | |
1623 <tr> | |
1624 <td class='DevStatusBox'> | |
1625 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=14386", event); return false;' | |
1626 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder14386' | |
1627 target="_blank"></a> | |
1628 </td> | |
1629 <td class='DevStatusBox'> | |
1630 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=7325", event); return false;' | |
1631 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests17325' | |
1632 target="_blank"></a> | |
1633 </td> | |
1634 <td class='DevStatusBox'> | |
1635 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1636 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
1637 target="_blank"></a> | |
1638 </td> | |
1639 | |
1640 </tr> | |
1641 </table> | |
1642 </td> | |
1643 </tr> | |
1644 | |
1645 <tr> | |
1646 <td colspan="3" class='DevComment '> | |
1647 Set app icon for panel apps.<br/><br/>BUG=118505<br/>TEST=See issue<br/><b
r/>Review URL: https://chromiumcodereview.appspot.com/9702093 | |
1648 </td> | |
1649 </tr> | |
1650 | |
1651 | |
1652 | |
1653 <tr class='DevStatusSpacing'> | |
1654 <td> | |
1655 </td> | |
1656 </tr> | |
1657 | |
1658 <tr> | |
1659 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1660 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127212" t
arget="_blank">127212</a> | |
1661 </td> | |
1662 <td class='DevName Alt' width="1%"> | |
1663 rch<span style="display:none">ohnoyoudont</span>@chromium.org | |
1664 </td> | |
1665 | |
1666 <td class='DevStatus Alt DevStatusCollapse'> | |
1667 <table width="100%"> | |
1668 <tr> | |
1669 <td class='DevStatusBox'> | |
1670 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=14385", event); return false;' | |
1671 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder14385' | |
1672 target="_blank"></a> | |
1673 </td> | |
1674 <td class='DevStatusBox'> | |
1675 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=7324", event); return false;' | |
1676 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests17324' | |
1677 target="_blank"></a> | |
1678 </td> | |
1679 <td class='DevStatusBox'> | |
1680 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1681 title='ASAN Tests (2)' class='DevStatusBox notstarted ' | |
1682 target="_blank"></a> | |
1683 </td> | |
1684 | |
1685 </tr> | |
1686 </table> | |
1687 </td> | |
1688 </tr> | |
1689 | |
1690 <tr> | |
1691 <td colspan="3" class='DevComment Alt'> | |
1692 Move SpdySession class statics to .cc globals and rename to match conventi
on.<br/><br/><br/>Review URL: http://codereview.chromium.org/9689066 | |
1693 </td> | |
1694 </tr> | |
1695 | |
1696 | |
1697 | |
1698 <tr class='DevStatusSpacing'> | |
1699 <td> | |
1700 </td> | |
1701 </tr> | |
1702 | |
1703 <tr> | |
1704 <td class='DevRev DevRevCollapse' width="1%"> | |
1705 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127210" t
arget="_blank">127210</a> | |
1706 </td> | |
1707 <td class='DevName ' width="1%"> | |
1708 thakis<span style="display:none">ohnoyoudont</span>@chromium.org | |
1709 </td> | |
1710 | |
1711 <td class='DevStatus DevStatusCollapse'> | |
1712 <table width="100%"> | |
1713 <tr> | |
1714 <td class='DevStatusBox'> | |
1715 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=14384", event); return false;' | |
1716 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder14384' | |
1717 target="_blank"></a> | |
1718 </td> | |
1719 <td class='DevStatusBox'> | |
1720 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=7324", event); return false;' | |
1721 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests17324' | |
1722 target="_blank"></a> | |
1723 </td> | |
1724 <td class='DevStatusBox'> | |
1725 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=5481", event); return false;' | |
1726 title='ASAN Tests (2) build successful' class='DevStatusBox succe
ss TagASANTests25481' | |
1727 target="_blank"></a> | |
1728 </td> | |
1729 | |
1730 </tr> | |
1731 </table> | |
1732 </td> | |
1733 </tr> | |
1734 | |
1735 <tr> | |
1736 <td colspan="3" class='DevComment '> | |
1737 roll rlz 87:94<br/><br/>88: Add a ReadProductEvents() method to RlzValueSt
ore.<br/>89: Change return type of GetProductEventsAsCgiHelper() from DWORD to b
ool.<br/>90-94: Change SupplementalBranding from wchar_t to char.<br/><br/>BUG=4
6579<br/>TEST=none<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9
704089 | |
1738 </td> | |
1739 </tr> | |
1740 | |
1741 | |
1742 | |
1743 <tr class='DevStatusSpacing'> | |
1744 <td> | |
1745 </td> | |
1746 </tr> | |
1747 | |
1748 <tr> | |
1749 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1750 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127209" t
arget="_blank">127209</a> | |
1751 </td> | |
1752 <td class='DevName Alt' width="1%"> | |
1753 erikwright<span style="display:none">ohnoyoudont</span>@chromium.org | |
1754 </td> | |
1755 | |
1756 <td class='DevStatus Alt DevStatusCollapse'> | |
1757 <table width="100%"> | |
1758 <tr> | |
1759 <td class='DevStatusBox'> | |
1760 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=14383", event); return false;' | |
1761 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder14383' | |
1762 target="_blank"></a> | |
1763 </td> | |
1764 <td class='DevStatusBox'> | |
1765 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=7324", event); return false;' | |
1766 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests17324' | |
1767 target="_blank"></a> | |
1768 </td> | |
1769 <td class='DevStatusBox'> | |
1770 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=5481", event); return false;' | |
1771 title='ASAN Tests (2) build successful' class='DevStatusBox succe
ss TagASANTests25481' | |
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 Update net/base/cookie_*.h includes to net/cookies/cookie_*.h .<br/><br/>O
nce complete, forwarding headers will be removed from net/base/ .<br/><br/>TEST=
none<br/>R=darin<br/><br/><br/>Review URL: http://codereview.chromium.org/970605
6 | |
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=127208" t
arget="_blank">127208</a> | |
1796 </td> | |
1797 <td class='DevName ' width="1%"> | |
1798 benchan<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=ASAN%20Buil
der&number=14382", event); return false;' | |
1806 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder14382' | |
1807 target="_blank"></a> | |
1808 </td> | |
1809 <td class='DevStatusBox'> | |
1810 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=7324", event); return false;' | |
1811 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests17324' | |
1812 target="_blank"></a> | |
1813 </td> | |
1814 <td class='DevStatusBox'> | |
1815 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=5481", event); return false;' | |
1816 title='ASAN Tests (2) build successful' class='DevStatusBox succe
ss TagASANTests25481' | |
1817 target="_blank"></a> | |
1818 </td> | |
1819 | |
1820 </tr> | |
1821 </table> | |
1822 </td> | |
1823 </tr> | |
1824 | |
1825 <tr> | |
1826 <td colspan="3" class='DevComment '> | |
1827 Make UrlFetchOperation a non-template base class.<br/><br/>BUG=none<br/>TE
ST=Run "unit_tests --gtest_filter='*GData*'"<br/><br/>Review URL
: http://codereview.chromium.org/9700090 | |
1828 </td> | |
1829 </tr> | |
1830 | |
1831 | |
1832 | |
1833 <tr class='DevStatusSpacing'> | |
1834 <td> | |
1835 </td> | |
1836 </tr> | |
1837 | |
1838 <tr> | |
1839 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1840 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127206" t
arget="_blank">127206</a> | |
1841 </td> | |
1842 <td class='DevName Alt' width="1%"> | |
1843 joaodasilva<span style="display:none">ohnoyoudont</span>@chromium.org | |
1844 </td> | |
1845 | |
1846 <td class='DevStatus Alt DevStatusCollapse'> | |
1847 <table width="100%"> | |
1848 <tr> | |
1849 <td class='DevStatusBox'> | |
1850 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=14381", event); return false;' | |
1851 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder14381' | |
1852 target="_blank"></a> | |
1853 </td> | |
1854 <td class='DevStatusBox'> | |
1855 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=7323", event); return false;' | |
1856 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests17323' | |
1857 target="_blank"></a> | |
1858 </td> | |
1859 <td class='DevStatusBox'> | |
1860 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=5481", event); return false;' | |
1861 title='ASAN Tests (2) build successful' class='DevStatusBox succe
ss TagASANTests25481' | |
1862 target="_blank"></a> | |
1863 </td> | |
1864 | |
1865 </tr> | |
1866 </table> | |
1867 </td> | |
1868 </tr> | |
1869 | |
1870 <tr> | |
1871 <td colspan="3" class='DevComment Alt'> | |
1872 Split ExtensionUpdater into two smaller classes.<br/><br/>The new Extensio
nDownloader takes care of fetching manifests, parsing them,<br/>and downloading
crx files. These are then passed to a Delegate.<br/><br/>The ExtensionUpdater is
one such Delegate, and does the same as before.<br/><br/>This makes it possible
for other components to download extensions given an ID<br/>and update URL; in
particular, the retail-mode AppPack for chromeos.<br/><br/>BUG=chromium-os:25463
<br/>TEST=Exactly everything about installing/updating extensions works exactly
the same. All tests pass.<br/><br/>Review URL: https://chromiumcodereview.appspo
t.com/9695019 | |
1873 </td> | |
1874 </tr> | |
1875 | |
1876 | |
1877 | |
1878 <tr class='DevStatusSpacing'> | |
1879 <td> | |
1880 </td> | |
1881 </tr> | |
1882 | |
1883 <tr> | |
1884 <td class='DevRev DevRevCollapse' width="1%"> | |
1885 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127204" t
arget="_blank">127204</a> | |
1886 </td> | |
1887 <td class='DevName ' width="1%"> | |
1888 bsalomon<span style="display:none">ohnoyoudont</span>@google.com | |
1889 </td> | |
1890 | |
1891 <td class='DevStatus DevStatusCollapse'> | |
1892 <table width="100%"> | |
1893 <tr> | |
1894 <td class='DevStatusBox'> | |
1895 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Buil
der&number=14380", event); return false;' | |
1896 title='ASAN Builder build successful' class='DevStatusBox success
TagASANBuilder14380' | |
1897 target="_blank"></a> | |
1898 </td> | |
1899 <td class='DevStatusBox'> | |
1900 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%281%29&number=7323", event); return false;' | |
1901 title='ASAN Tests (1) build successful' class='DevStatusBox succe
ss TagASANTests17323' | |
1902 target="_blank"></a> | |
1903 </td> | |
1904 <td class='DevStatusBox'> | |
1905 <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Test
s%20%282%29&number=5481", event); return false;' | |
1906 title='ASAN Tests (2) build successful' class='DevStatusBox succe
ss TagASANTests25481' | |
1907 target="_blank"></a> | |
1908 </td> | |
1909 | |
1910 </tr> | |
1911 </table> | |
1912 </td> | |
1913 </tr> | |
1914 | |
1915 <tr> | |
1916 <td colspan="3" class='DevComment '> | |
1917 Roll Skia to 3412<br/><br/>Control your roll: https://chromiumcodereview.a
ppspot.com/9252024<br/>Review URL: https://chromiumcodereview.appspot.com/970408
8 | |
1918 </td> | |
1919 </tr> | |
1920 | |
1921 | |
1922 | |
1923 <tr class='DevStatusSpacing'> | |
1924 <td> | |
1925 </td> | |
1926 </tr> | |
1927 | |
1928 </table> | |
1929 </div> | |
1930 | |
1931 | |
1932 <div id="divBox" onmouseout="if (checkMouseLeave(this, event)) this.style.displa
y = 'None'" class="BuildWaterfall"> | |
1933 </div> | |
1934 | |
1935 | |
1936 <iframe id="frameBox" style="display: none;"></iframe> | |
1937 | |
1938 <script type="text/javascript"> | |
1939 // replace 'onload="updateDiv(event);" with this, as iframe doesn't have onload
event in xhtml | |
1940 window.addEventListener("load", function() { | |
1941 document.getElementById('frameBox').onload = function(event) { | |
1942 updateDiv(event); | |
1943 }; | |
1944 }, false); | |
1945 </script> | |
1946 | |
1947 </div><div class="footer" style="clear:both"> | |
1948 <hr/> | |
1949 [ <a class='collapse' href='#' OnClick='collapse(); return false;'>collapse</a
> | |
1950 <a class='uncollapse' href='#' OnClick='uncollapse(); return false;'>un-collap
se</a> | |
1951 <a class='merge' href="#" OnClick="merge(); return false;">merge</a> | |
1952 <a class='unmerge' style='display: none' href="#" OnClick="unmerge(); return f
alse;">un-merge</a> ] | |
1953 <p>Debug info: {'revision_final': 25, 'builds_scanned': 120, 'source_all': 25,
'source_len': 25, 'last_revision': u'127204', 'from_cache': 24, 'added_blocks':
0, 'load_time': 0.027580022811889648}</p> | |
1954 </div> | |
1955 </body> | |
1956 </html> | |
OLD | NEW |