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

Unified Diff: tests/test_console_merger_utf8/chromium_chrome_console_input.html

Issue 11535002: chromium-build app now renders console from stored rows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/chromium-build
Patch Set: Add test_parse_master_utf8 Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/test_console_merger_utf8/chromium_chrome_console_input.html
diff --git a/tests/test_console_merger_utf8/chromium_chrome_console_input.html b/tests/test_console_merger_utf8/chromium_chrome_console_input.html
deleted file mode 100644
index 5408e95304d64eca74e00b79eb36ddb11ddd7c48..0000000000000000000000000000000000000000
--- a/tests/test_console_merger_utf8/chromium_chrome_console_input.html
+++ /dev/null
@@ -1,2241 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta http-equiv="refresh" content="9999999999"/>
- <title>BuildBot: Chromium Chrome</title>
- <link rel="stylesheet" href="default.css" type="text/css" />
- <link rel="alternate" type="application/rss+xml" title="RSS" href="rss">
-
-<script type='text/javascript'>
-// <![CDATA[
-//
-
-//
-// Functions used to display the build status bubble on box click.
-//
-
-// show the build status box. This is called when the user clicks on a block.
-function showBuildBox(url, event) {
- // Find the current curson position.
- var cursorPosTop = (window.event ? window.event.clientY : event.pageY)
- var cursorPosLeft = (window.event ? window.event.clientX : event.pageX)
-
- // Offset the position by 5, to make the window appears under the cursor.
- cursorPosTop = cursorPosTop + document.body.scrollTop -5 ;
- cursorPosLeft = cursorPosLeft + document.body.scrollLeft - 5;
-
- // Move the div (hidden) under the cursor.
- var divBox = document.getElementById('divBox');
- divBox.style.top = parseInt(cursorPosTop) + 'px';
- divBox.style.left = parseInt(cursorPosLeft) + 'px';
-
- // Reload the hidden frame with the build page we want to show.
- // The onload even on this frame will update the div and make it visible.
- document.getElementById("frameBox").src = url
-
- // We don't want to reload the page.
- return false;
-}
-
-// OnLoad handler for the iframe containing the build to show.
-function updateDiv(event) {
- // Get the frame innerHTML.
- var iframeContent = document.getElementById("frameBox").contentWindow.document.body.innerHTML;
-
- // If there is any content, update the div, and make it visible.
- if (iframeContent) {
- var divBox = document.getElementById('divBox');
- divBox.innerHTML = iframeContent ;
- divBox.style.display = "block";
- }
-}
-
-// Util functions to know if an element is contained inside another element.
-// We use this to know when we mouse out our build status div.
-function containsDOM (container, containee) {
- var isParent = false;
- do {
- if ((isParent = container == containee))
- break;
- containee = containee.parentNode;
- } while (containee != null);
-
- return isParent;
-}
-
-// OnMouseOut handler. Returns true if the mouse moved out of the element.
-// It is false if the mouse is still in the element, but in a blank part of it,
-// like in an empty table cell.
-function checkMouseLeave(element, event) {
- if (element.contains && event.toElement) {
- return !element.contains(event.toElement);
- }
- else if (event.relatedTarget) {
- return !containsDOM(element, event.relatedTarget);
- }
-}
-
-// Creates a new cookie.
-function createCookie(name, value, day) {
- var date = new Date();
- date.setTime(date.getTime() + (day * 24 * 60 * 60 * 1000));
- var expires = "; expires=" + date.toGMTString();
- document.cookie = name + "=" + value+expires + "; path=/";
-}
-
-// Returns the vaue of a cookie, or null if it does not exist.
-function readCookie(name) {
- var begin = name + "=";
- var data = document.cookie.split(';');
- for(var i = 0; i < data.length; i++) {
- var cookie = data[i];
- while (cookie.charAt(0) == ' ')
- cookie = cookie.substring(1, cookie.length);
- if (cookie.indexOf(begin) == 0)
- return cookie.substring(begin.length, cookie.length);
- }
-
- return null;
-}
-
-// Deletes a cookie.
-function eraseCookie(name) {
- createCookie(name, "", -1);
-}
-
-// Hides all "details" and "comments" section.
-function collapse() {
- // Hide all Comments sections.
- var comments = document.querySelectorAll('.DevComment');
- for(var i = 0; i < comments.length; i++) {
- comments[i].style.display = "none";
- }
-
- // Hide all details sections.
- var details = document.querySelectorAll('.DevDetails');
- for(var i = 0; i < details.length; i++) {
- details[i].style.display = "none";
- }
-
- // Fix the rounding on the Revision box. (Lower right corner must be round)
- var revisions = document.querySelectorAll('.DevRev');
- for(var i = 0; i < revisions.length; i++) {
- revisions[i].className = revisions[i].className + ' DevRevCollapse';
- }
-
- // Fix the rounding on the last category box. (Lower left corner must be round)
- var status = document.querySelectorAll('.last');
- for(var i = 0; i < status.length; i++) {
- status[i].className = status[i].className + ' DevStatusCollapse';
- }
-
- // Create a cookie to remember that we want the view to be collapsed.
- createCookie('collapsed', 'true', 30)
-
- // Hide the collapse and the unmerge buttons.
- document.querySelectorAll('.collapse')[0].style.display = 'none'
- document.querySelectorAll('.unmerge')[0].style.display = 'none'
-
- // Activate the merge and expand buttons.
- document.querySelectorAll('.uncollapse')[0].style.display = 'inline'
- document.querySelectorAll('.merge')[0].style.display = 'inline'
-}
-
-// Expands the view. This is the opposite of "Collapse"
-function uncollapse() {
- unmerge();
-
- // Make the comments visible.
- var comments = document.querySelectorAll('.DevComment');
- for(var i = 0; i < comments.length; i++) {
- comments[i].style.display = "";
- }
-
- // Make the details visible.
- var details = document.querySelectorAll('.DevDetails');
- for(var i = 0; i < details.length; i++) {
- details[i].style.display = "";
- }
-
- // Remove the round corner (lower right) for the Revision box.
- var revisions = document.querySelectorAll('.DevRev');
- for(var i = 0; i < revisions.length; i++) {
- revisions[i].className = revisions[i].className.replace('DevRevCollapse', '');
- }
-
- // Remoe the round corner (lower left) for the last category box.
- var status = document.querySelectorAll('.DevStatus');
- for(var i = 0; i < status.length; i++) {
- status[i].className = status[i].className.replace('DevStatusCollapse', '');
- }
-
- // Delete the cookies that say that we want to be collapsed or merged.
- eraseCookie('collapsed')
- eraseCookie('merged')
-
- // Display the "collapse" and "merge" buttons.
- document.querySelectorAll('.collapse')[0].style.display = 'inline'
- document.querySelectorAll('.merge')[0].style.display = 'inline'
-
- // Remove the "uncollapse" and "unmerge" buttons.
- document.querySelectorAll('.uncollapse')[0].style.display = 'none'
- document.querySelectorAll('.unmerge')[0].style.display = 'none'
-}
-
-// Merge all the status boxes together.
-function merge() {
- collapse();
-
- // Hide all the spacing.
- var spacing = document.querySelectorAll('.DevStatusSpacing');
- for(var i = 0; i < spacing.length; i++) {
- spacing[i].style.display = "none";
- }
-
- // Each boxes have, in the className, a tag that uniquely represents the
- // build where this data comes from.
- // Since we want to merge all the boxes coming from the same build, we
- // parse the document to find all the builds, and then, for each build, we
- // concatenate the boxes.
-
- var allTags = [];
- all = document.getElementsByTagName('*')
- for(var i = 0; i < all.length; i++) {
- var element = all[i];
- start = element.className.indexOf('Tag')
- if (start != -1) {
- var className = ""
- end = element.className.indexOf(' ', start)
- if (end != -1) {
- className = element.className.substring(start, end);
- } else {
- className = element.className.substring(start);
- }
- allTags[className] = 1;
- }
- }
-
- // Mergeall tags that we found
- for (i in allTags) {
- var current = document.querySelectorAll('.' + i);
-
- // We do the work only if there is more than 1 box with the same
- // build.
- if (current.length > 1) {
- // Add the noround class to all the boxes.
- for(var i = 0; i < current.length; i++) {
- current[i].className = current[i].className + ' noround';
- }
-
- // Add the begin class to the first box.
- current[0].className = current[0].className + ' begin';
-
- // Add the end class to the last box.
- last = current.length - 1;
- current[last].className = current[last].className + ' end';
- }
- }
-
- // Display the "unmerge" button.
- document.querySelectorAll('.unmerge')[0].style.display = 'inline'
- document.querySelectorAll('.uncollapse')[0].style.display = 'inline'
-
- // Remove the "merge" button.
- document.querySelectorAll('.collapse')[0].style.display = 'none'
- document.querySelectorAll('.merge')[0].style.display = 'none'
-
- // Create a cookie to remember that we want to be merged.
- createCookie('merged', 'true', 30)
-}
-
-// Un-merge the view. This is the opposite of "merge".
-function unmerge() {
- // We put back all the spacing.
- var spacing = document.querySelectorAll('.DevStatusSpacing');
- for(var i = 0; i < spacing.length; i++) {
- spacing[i].style.display = "";
- }
-
- // We remove the class added to all the boxes we modified.
- var noround = document.querySelectorAll('.noround');
- for(var i = 0; i < noround.length; i++) {
- noround[i].className = noround[i].className.replace("begin", '');
- noround[i].className = noround[i].className.replace("end", '');
- noround[i].className = noround[i].className.replace("noround", '');
- }
-
- // Delete the cookie, we don't want to be merged anymore.
- eraseCookie('merged')
-
- // Display the "merge" button.
- document.querySelectorAll('.merge')[0].style.display = 'inline'
-
- // Hide the "unmerge" button.
- document.querySelectorAll('.unmerge')[0].style.display = 'none'
-}
-
-function SetupView() {
- if (readCookie('merged')) {
- merge();
- } else if (readCookie('collapsed')) {
- collapse();
- }
-}
-
-document.addEventListener("DOMContentLoaded", SetupView, false);
-
-// ]]>
-</script>
- </head>
- <body class="interface">
- <div class="header">
- <a href=".">Home</a>
- - <a href="waterfall">Waterfall</a>
- <a href="grid">Grid</a>
- <a href="tgrid">T-Grid</a>
- <a href="console">Console</a>
- <a href="builders">Builders</a>
- <a href="one_line_per_build">Recent Builds</a>
- <a href="buildslaves">Buildslaves</a>
- <a href="changes">Changesources</a>
- - <a href="json/help">JSON API</a>
- - <a href="about">About</a>
- </div>
-
-<hr/>
-<script>
- /**
- * Pseudo namespace for chromium - keep it short because we are in a very
- * narrow scope for this file.
- * @type {Object}
- */
- var c = {};
-
- /**
- * Replaces html references with anchor tags to the same.
- * @param {String} className CSS class to operate on.
- */
- function autoLink(className) {
- var comments = document.querySelectorAll(className);
- for(var i = 0; i < comments.length; i++) {
- comments[i].innerHTML = comments[i].innerHTML.replace(
- /https?:\/\/[^ \t\n<]*/g, '<a href="$&">$&</a>');
- }
- };
-
- window.addEventListener("load", function() {
- autoLink('.DevComment');
- }, false);
-
- /**
- * This is the indicator for whether we are in console or waterfall
- * mode, or some future resource.
- * @type {String}
- */
- c.viewtype = location.pathname.split('/').slice(-1);
-
- /**
- * Returns a search string portion including marker, or an empty string.
- * optional.
- * @param {String} opt_s A search string, or some form of emptiness.
- * @returns {!String}
- */
- function search(opt_s) {
- return opt_s ? '?' + opt_s.replace(/^[?]/, '') : '';
- };
-
- /**
- * Replicates a string.
- * @param {Number} i A whole number of repetitions.
- * @param {String} x The string to be repeated.
- * @returns {!String}
- */
- function repeat(i, x){
- var t = ''
- for (j = 0; j < i; j++) { t += x; }
- return t;
- };
-
- /**
- * A simple HTML table string.
- * @param {String} attributes A set of HTML attributes for the table.
- * @param {String} contents The contents.
- * @returns {!String}
- */
- function table(attributes, contents) {
- return '<table ' + attributes + '>' + contents + '</table>\n';
- };
-
- /**
- * A simple HTML div string.
- * @param {String} attributes A set of HTML attributes for the div.
- * @param {String} contents The contents.
- * @returns {!String}
- */
- function div(attributes, contents) {
- return '<div ' + attributes + '>' + contents + '</div>';
- };
-
- /**
- * A simple HTML table row string.
- * @param {String} attributes A set of HTML attributes for the table row.
- * @param {String} contents The contents.
- * @returns {!String}
- */
- function tr(contents) {
- return '<tr>' + contents + '</tr>\n';
- };
-
- /**
- * A simple HTML table cell string.
- * @param {String} attributes A set of HTML attributes for the table cell.
- * @param {String} contents The contents.
- * @returns {!String}
- */
- function td(attributes, contents) {
- return '<td ' + attributes + '>' + contents + '</td>';
- };
-
- /**
- * A simple HTML anchor string.
- * @param {String} url The value for the href.
- * @param {String} attributes A set of HTML attributes for the table.
- * @param {String} contents The contents.
- * @returns {!String}
- */
- function a(url, contents, attributes) {
- return '<a href="' + url + '" ' + attributes + '>' + contents + '</a>';
- };
-
- /**
- * Gives an HTML anchor string to the specified URL, but of the same view
- * type as the current page.
- * @param {String} url The URL portion up to the view.
- * @param {String} search_opt A the query portion.
- * @param {String} contents The contents for the tag.
- * @returns {!String}
- */
- function aView(url, search_opt, contents) {
- return a((url ? url + '/' : '') + c.viewtype + search(search_opt),
- contents, '')
- };
-
- /**
- * A simple HTML iframe string.
- * @param {String} attributes A set of HTML attributes for the table.
- * @param {String} url The source of the iframe.
- * @returns {!String} the iframe or an empty string if noframe is specified.
- */
- function iFrame(attributes, url) {
- if (window.location.href.search('noframe') == -1) {
- return '<iframe ' + attributes + ' src="' + url + '"></iframe>';
- }
- return ''
- };
-</script>
-
-<div class="Announcement">
-
-<iframe width="100%" height="44" frameborder="0" scrolling="no" src="http://chromium-status.appspot.com/current"></iframe>
-
-<center style="padding: 0 7px">
- <table width="100%" valign="top" bgcolor="#efefef" style="-webkit-border-bottom-left-radius: 24px; -webkit-border-bottom-right-radius: 24px; -moz-border-bottom-right-radius: 24px; -moz-border-bottom-right-radius: 24px; box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);">
- <tr>
- <td width="29%">
- <table valign="top" width="100%">
- <tr>
- <td style="text-align: right;">
- <b>Builds:</b>
- </td>
- <td>
- <a href="http://commondatastorage.googleapis.com/chromium-browser-continuous/index.html">continuous</a> |
- <a href="http://build.chromium.org/f/chromium/symsrv/index.html">symbols</a> |
- <a href="http://chromium-status.appspot.com">status</a>
- </td>
- </tr>
- <tr>
- <td style="text-align: right;">
- <b>Dashboards:</b>
- </td>
- <td>
- <a href="http://build.chromium.org/f/chromium/perf/dashboard/overview.html">perf</a> |
- <a href="http://build.chromium.org/f/chromium/perf/dashboard/memory.html">memory</a> |
- <a href="http://build.chromium.org/f/chromium/perf/dashboard/sizes.html">sizes</a> |
- <a href="http://build.chromium.org/f/chromium/coverage/">coverage</a> |
- <a href="http://build.chromium.org/f/chromium/flakiness/">flakiness</a> |
- <a href="http://build.chromium.org/p/chromium/stats">stats</a>
- </td>
- </tr>
- <tr>
- <td style="text-align: right;">
- <b>Chromium:</b>
- </td>
- <td>
- <a href="http://src.chromium.org/viewvc/chrome">sources</a> |
- <a href="http://codereview.chromium.org/">reviews</a> |
- <a href="http://code.google.com/p/chromium/issues/list?can=2&q=&sort=pri+mstone&colspec=ID%20Stars%20Pri%20Area%20Type%20Status%20Summary%20Modified%20Owner%20Mstone">bugs</a> |
- <a href="http://dev.chromium.org/Home">dev</a> |
- <a href="http://www.google.com/support/chrome/">support</a>
- </td>
- </tr>
- <tr>
- <td style="text-align: right;">
- <b>Sheriffs:</b>
- </td>
- <td>
- <script src='http://chromium-build-master.appspot.com/p/chromium/sheriff.js'></script>,<br>
- <script src='http://chromium-build-master.appspot.com/p/chromium/sheriff_webkit.js'></script>(WebKit),
- <script src='http://chromium-build-master.appspot.com/p/chromium/sheriff_memory.js'></script>(Memory),
- <script src='http://chromium-build-master.appspot.com/p/chromium/sheriff_nacl.js'></script>(NaCl),<br>
- <script src='http://chromium-build-master.appspot.com/p/chromium/sheriff_perf.js'></script>(Perf),
- <script src='http://chromium-build-master.appspot.com/p/chromium/sheriff_cros_mtv.js'></script>,
- <script src='http://chromium-build-master.appspot.com/p/chromium/sheriff_cros_nonmtv.js'></script>(CrOS),<br>
- <a href="https://www.google.com/calendar/render?cid=google.com_iqfka4i9asiva67vlqqf1es094%40group.calendar.google.com">trooper schedule</a>
- </td>
- </tr>
- <tr>
- <td style="text-align: right;">
- <b>Navigate:</b>
- </td>
- <td colspan="2">
- <script>
- document.write([
- a("http://dev.chromium.org/developers/testing/chromium-build-infrastructure/tour-of-the-chromium-buildbot", "about", ""),
- a("./waterfall/help", "customize", ""),
- a("./waterfall", "waterfall", ""),
- a("./console", "console", ""),
- a("../tryserver.chromium/waterfall", "try", ""),
- aView("../chromium.fyi", "", "experimental"),
- a("./waterfall?show_events=true&failures_only=true", "failures", ""),
- aView("../chromium.memory", "", "memory"),
- aView("../chromium.memory.fyi", "", "memory fyi"),
- aView("../chromium.chromiumos", "", "chromiumos chrome"),
- aView("../chromiumos", "", "chromiumos team"),
- aView("../client.nacl", "", "NaCl")].join(' | '));
- </script>
- </td>
- </tr>
- </table>
- </td>
- <td width="1" bgcolor="#CCCCCC">
- </td>
- <td width="1%">
- </td>
- <td width="70%">
- <table width="100%">
- <script language="javascript">
- c.chromium = '';
- c.chromium_chromiumos = '';
- 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';
- c.memory = '';
- c.memory_fyi = '';
- c.perf = '';
- c.cros = '';
- c.chrome = '';
- c.lkgr = '';
- c.pyauto = '';
-
- c.status = '../chromium';
- c.status_cros = '../chromium.chromiumos';
- c.status_webkit = '../chromium.webkit';
- c.status_memory = '../chromium.memory';
- c.status_memory_fyi = '../chromium.memory.fyi';
- c.status_chrome = '../chromium.chrome';
- c.status_perf = '../chromium.perf';
- c.status_lkgr = '../chromium.lkgr';
- c.status_pyauto = '../chromium.pyauto';
-
- /**
- * Builds a reference for the iframe with boxes.
- * @param {String} x the name of the waterfall.
- * @returns {String} The URL.
- */
- function BarUrl(x) {
- return 'http://chromium-build-master.appspot.com/p/' + x +
- '/horizontal_one_box_per_builder';
- }
- c.bar = BarUrl('chromium')
- c.bar_webkit = 'http://build.chromium.org/p/chromium.webkit/horizontal_one_box_per_builder';
- c.bar_memory = BarUrl('chromium.memory');
- c.bar_memory_fyi = BarUrl('chromium.memory.fyi');
- c.bar_perf = BarUrl('chromium.perf');
- c.bar_chrome = BarUrl('chromium.chrome');
- c.bar_lkgr = BarUrl('chromium.lkgr');
- c.bar_pyauto = BarUrl('chromium.pyauto');
- c.bar_cros = BarUrl('chromium.chromiumos');
-
-
- /**
- * Joins URL and search terms.
- * @param {String} type The Url without the cgi search portion.
- * @param {String} content The parameters for the sub-selection
- * inside the master. Optional.
- * @returns {String} A completed URL.
- */
- function GetUrl(type, content) {
- return type + search(content);
- }
-
- /**
- * Callback to replace the LKGR link with one that identifies
- * the current revision for the LKGR.
- */
- function DisplayLKGR() {
- var xmlHttp = new XMLHttpRequest();
- var lkgrPath = c.status_lkgr +
- '/json/builders/Linux%20x64/builds/-1?as_text=1';
- var lkgrLink = document.getElementById('LKGRLink');
- xmlHttp.open('GET', lkgrPath, false);
- xmlHttp.send(null);
- if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {
- var buildData;
- if (typeof (JSON) !== 'undefined' &&
- typeof (JSON.parse) === 'function') {
- buildData = JSON.parse(xmlHttp.responseText);
- } else {
- buildData = eval('(' + xmlHttp.responseText + ')');
- }
- var properties = buildData['properties'];
- for (var i = 0; i < properties.length; i++) {
- if (properties[i][0] == 'got_revision') {
- lkgrLink.innerHTML = 'LKGR<br>(' + properties[i][1] + ')';
- return;
- }
- }
- }
- }
-
- c.default_iframe_properties = [
- 'width="100%"',
- 'height="20"',
- 'frameborder="0"',
- 'scrolling="no"',
- ].join(' ');
-
- /**
- * The most detailed specification of a builder bar with boxes.
- * Reutrns an HTMLstring with 2 <td>s
- * @param {String} status_url URL portion for the title link.
- * @param {String} bar_url URL portion for the array of boxes.
- * @param {String} content specification for the references, e.g..
- * @param {String} name what to call this bar.
- * @param {String} bar_properties extra attributes for the array
- * of boxes portion.
- * @param {String} link_properties extra attributes for the name
- * portion that is a link.
- * @returns {String}
- */
- function HTMLBaseBar(status_url, bar_url, content, name,
- bar_properties, link_properties) {
- return td('',
- a(GetUrl(status_url, content), name,
- link_properties)) +
- td(bar_properties,
- iFrame(c.default_iframe_properties,
- GetUrl(bar_url, content)));
- }
-
- /**
- * The more common specification of a builder bar with boxes.
- * Presume to take an entire row.
- * @param {String} status_url URL portion for the title link.
- * @param {String} bar_url URL portion for the array of boxes.
- * @param {String} content specification for the references, e.g..
- * @param {String} name what to call this bar.
- * @returns {String}
- */
- function HTMLBar(status_url, bar_url, content, name) {
- return tr(HTMLBaseBar(status_url, bar_url, content, name,
- 'width="99%" colspan=9', ''));
- }
-
- /**
- * A specification of a builder bar with boxes, which is one of
- * multiple in a row.
- * Note that since these are elements of a table, percents
- * can be irrelevant to the final layout.
- * @param {String} status_url URL portion for the title link.
- * @param {String} bar_url URL portion for the array of boxes.
- * @param {String} content specification for the references, e.g..
- * @param {String} name what to call this bar.
- * @param {String} pc percent of the line to allocat to the boxes.
- * @returns {String}
- */
- function HTMLSubBar(status_url, bar_url, content, name, pc) {
- return HTMLBaseBar(status_url, bar_url, content, name,
- 'width="' + pc + '"', '');
- }
-
- document.write(tr(td(
- 'colspan=10 width="99%"',
- div(
- 'class="closerbox" width="100%"',
- div('class="title" width="100%" height="10px"',
- a('http://chromium-status.appspot.com', 'Tree closers')) +
- table(
- 'width="100%"',
- HTMLBar(c.status, c.bar, c.chromium, 'Chromium') +
- tr(HTMLSubBar(c.status_cros, c.bar_cros, c.cros,
- 'ChromiumOS', '30%') +
- HTMLSubBar(c.status_chrome, c.bar_chrome, c.chrome,
- 'Official', '35%') +
- HTMLSubBar(c.status_memory, c.bar_memory, c.memory,
- 'Memory', '25%')))))));
-
- document.write(tr(
- HTMLBaseBar(c.status_webkit, c.bar_webkit, c.webkit,
- 'Webkit', 'colspan=3', '') +
- HTMLBaseBar(c.status_perf, c.bar_perf, c.perf,
- 'Perf', 'colspan=5', '')));
-
- document.write(tr(
- HTMLBaseBar(c.status_lkgr, c.bar_lkgr, c.lkgr,
- 'LKGR', 'width="10%"', 'id="LKGRLink"') +
- HTMLBaseBar(c.status_pyauto, c.bar_pyauto, c.pyauto,
- 'PyAuto', 'width="15%"', '') +
- HTMLBaseBar(c.status_memory_fyi, c.bar_memory_fyi, c.memory_fyi,
- 'Memory<br>FYI', 'width="50%" colspan=5', '')));
-
- setTimeout('DisplayLKGR()', 100);
- </script>
- </table>
- </td>
- </tr>
- </table>
-</center>
-
-</div>
-<hr/>
-
- <div class="content">
-<div align="center">
- <table width="95%" class="Grid" border="0" cellspacing="0">
- <tr>
- <td width="33%" align="left" class="left_align">
- </td>
- <td width="33%" align="center" class="center_align">
- <div align="center">
- <table class="info">
- <tr>
- <td>Legend:&nbsp;&nbsp;</td>
- <td class='legend success' title='All tests passed'>Passed</td>
- <td class='legend failure' title='There is a new failure. Take a look!'>Failed</td>
- <td class='legend warnings' title='It was failing before, and it is still failing. Make sure you did not introduce new regressions'>Failed&nbsp;Again</td>
- <td class='legend running' title='The tests are still running'>Running</td>
- <td class='legend exception' title='Something went wrong with the test, there is no result'>Exception</td>
- <td class='legend offline' title='The builder is offline, as there are no slaves connected to it'>Offline</td>
- <td class='legend notstarted' title='No result yet.'>No&nbsp;data</td>
- </tr>
- </table>
- </div>
- </td>
- <td width="33%" align="right" class="right_align">
- <script type="text/javascript">
-// <![CDATA[
- function reload_page() {
- name_value = document.getElementById('namebox').value
- if (document.location.href.lastIndexOf('?') == -1)
- document.location.href = document.location.href+ '?name=' + name_value;
- else
- document.location.href = document.location.href+ '&name=' + name_value;
- }
-// ]]>
- </script>
- <input id='namebox' name='name' type='text' style='color:#999;'
- onblur='this.value = this.value || this.defaultValue; this.style.color = "#999";'
- onfocus='this.value=""; this.style.color = "#000";'
- value='Personalized for...'/>
- <input type='submit' value='Go' onclick='reload_page()'/>
- </td>
- </tr>
- </table>
-</div>
-
-<br/>
-
-
-<div align="center">
-<table width="96%" class="ConsoleData">
-
-
- <tr>
- <td width="1%">
- </td>
- <td width="1%">
- </td>
- <td class='DevSlave Alt last'>
- <table width="100%">
- <tr>
-
- <td class='DevSlaveBox'>
- <a href='./builders/Google%20Chrome%20Win' title='Google Chrome Win' class='DevSlaveBox success' target="_blank">
- </a>
- </td>
-
- <td class='DevSlaveBox'>
- <a href='./builders/Google%20Chrome%20Linux' title='Google Chrome Linux' class='DevSlaveBox success' target="_blank">
- </a>
- </td>
-
- <td class='DevSlaveBox'>
- <a href='./builders/Google%20Chrome%20Linux%20x64' title='Google Chrome Linux x64' class='DevSlaveBox success' target="_blank">
- </a>
- </td>
-
- <td class='DevSlaveBox'>
- <a href='./builders/Google%20Chrome%20Mac' title='Google Chrome Mac' class='DevSlaveBox success' target="_blank">
- </a>
- </td>
-
- <td class='DevSlaveBox'>
- <a href='./builders/Google%20Chrome%20ChromeOS' title='Google Chrome ChromeOS' class='DevSlaveBox success' target="_blank">
- </a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
-
- <tr>
- <td class='DevRev DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122850" target="_blank">122850</a>
- </td>
- <td class='DevName ' width="1%">
- jamesr<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Win' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Linux' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Linux x64' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Mac' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome ChromeOS' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- WebKit roll 108328:108357<br/><br/>TBR=yutak@chromium.org<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9433008
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev Alt DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122849" target="_blank">122849</a>
- </td>
- <td class='DevName Alt' width="1%">
- mnissler<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus Alt DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Win' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Linux' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Linux x64' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Mac' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome ChromeOS' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Update state on creating NativeComboboxWrapper.<br/><br/>Replace inconsistent and incomplete state initialization code with<br/>explicit Update calls to the 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 combobox was added to the view<br/>hierarchy.<br/><br/>BUG=chromium-os:26633<br/>TEST=EAP method dropdown is initialized correctly for policy-pushed networks on Chrome OS.<br/><br/><br/>Review URL: http://codereview.chromium.org/9395079
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122848" target="_blank">122848</a>
- </td>
- <td class='DevName ' width="1%">
- mihaip<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Win' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17557", event); return false;'
- title='Google Chrome Linux ETA: 550s' class='DevStatusBox running TagGoogleChromeLinux17557'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Linux x64' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Mac' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25502", event); return false;'
- title='Google Chrome ChromeOS ETA: 187s' class='DevStatusBox running TagGoogleChromeChromeOS25502'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Allow app launch URLs to be localized.<br/><br/>BUG=85034<br/>R=jstritar@chromium.org<br/><br/><br/>Review URL: http://codereview.chromium.org/9421010
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev Alt DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122847" target="_blank">122847</a>
- </td>
- <td class='DevName Alt' width="1%">
- tdresser<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus Alt DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Win' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17557", event); return false;'
- title='Google Chrome Linux ETA: 550s' class='DevStatusBox running TagGoogleChromeLinux17557'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Linux x64' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Mac' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25502", event); return false;'
- title='Google Chrome ChromeOS ETA: 187s' class='DevStatusBox running TagGoogleChromeChromeOS25502'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Gesture Recognizer fires Long Press Event<br/><br/>When a long press occurs, a scroll gesture is initiated. All scroll events<br/>in this gesture will have the EF_DRAGGING flag set.<br/><br/>This will allow long press to be used to start a drag and drop action.<br/><br/>BUG=113220<br/>TEST=GestureRecognizerTest.GestureEventDragDrop<br/><br/>Review URL: http://codereview.chromium.org/9407011
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122846" target="_blank">122846</a>
- </td>
- <td class='DevName ' width="1%">
- pkasting<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Win' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17557", event); return false;'
- title='Google Chrome Linux ETA: 550s' class='DevStatusBox running TagGoogleChromeLinux17557'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Linux x64' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Mac' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25502", event); return false;'
- title='Google Chrome ChromeOS ETA: 187s' class='DevStatusBox running TagGoogleChromeChromeOS25502'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Revert 122457 - Disable OmniboxApiTest.Basic on ChromiumOS.&nbsp; The offending 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
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev Alt DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122845" target="_blank">122845</a>
- </td>
- <td class='DevName Alt' width="1%">
- ananta<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus Alt DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Win' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17557", event); return false;'
- title='Google Chrome Linux ETA: 550s' class='DevStatusBox running TagGoogleChromeLinux17557'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Linux x64' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Mac' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25502", event); return false;'
- title='Google Chrome ChromeOS ETA: 187s' class='DevStatusBox running TagGoogleChromeChromeOS25502'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Optimize the DXVA video decode accelerator on Windows by copying the decoded 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&#39;t support<br/>format conversion.<br/><br/>The ANGLE based optimization code in this CL was picked up from AlPatricks original patch here.<br/>http://codereview.chromium.org/9108035/<br/><br/>BUG=none<br/>TEST=The dxva_video_decode_accelerator_unittest should perform better with this change.<br/>Review URL: https://chromiumcodereview.appspot.com/9417038
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122844" target="_blank">122844</a>
- </td>
- <td class='DevName ' width="1%">
- elijahtaylor<span style="display:none">ohnoyoudont</span>@google.com
- </td>
-
- <td class='DevStatus DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Win' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17557", event); return false;'
- title='Google Chrome Linux ETA: 550s' class='DevStatusBox running TagGoogleChromeLinux17557'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21864", event); return false;'
- title='Google Chrome Linux x64 ETA: 2s' class='DevStatusBox running TagGoogleChromeLinuxx6421864'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Mac' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25502", event); return false;'
- title='Google Chrome ChromeOS ETA: 187s' class='DevStatusBox running TagGoogleChromeChromeOS25502'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Make nacl_sdk oshelpers rm use glob to match patterns.<br/>Also fix rm command for directories (would only delete one directory previously, and would return non-zero).<br/><br/>This change only affects native_client_sdk<br/><br/>BUG=none<br/>TEST=trybots<br/>Review URL: https://chromiumcodereview.appspot.com/9420035
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev Alt DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122843" target="_blank">122843</a>
- </td>
- <td class='DevName Alt' width="1%">
- benjhayden<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus Alt DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Win' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17557", event); return false;'
- title='Google Chrome Linux ETA: 550s' class='DevStatusBox running TagGoogleChromeLinux17557'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21864", event); return false;'
- title='Google Chrome Linux x64 ETA: 2s' class='DevStatusBox running TagGoogleChromeLinuxx6421864'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Mac' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25501", event); return false;'
- title='Google Chrome ChromeOS build successful' class='DevStatusBox success TagGoogleChromeChromeOS25501'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- DownloadItem::SetIsPersisted() and IsPersisted() will facilitate merging DbHandle 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/>Review URL: http://codereview.chromium.org/9358066
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122840" target="_blank">122840</a>
- </td>
- <td class='DevName ' width="1%">
- zmo<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Win' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17556", event); return false;'
- title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17556'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21864", event); return false;'
- title='Google Chrome Linux x64 ETA: 2s' class='DevStatusBox running TagGoogleChromeLinuxx6421864'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Mac' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25500", event); return false;'
- title='Google Chrome ChromeOS build successful' class='DevStatusBox success TagGoogleChromeChromeOS25500'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- 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
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev Alt DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122839" target="_blank">122839</a>
- </td>
- <td class='DevName Alt' width="1%">
- thakis<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus Alt DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Win' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17556", event); return false;'
- title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17556'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21864", event); return false;'
- title='Google Chrome Linux x64 ETA: 2s' class='DevStatusBox running TagGoogleChromeLinuxx6421864'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Mac' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25500", event); return false;'
- title='Google Chrome ChromeOS build successful' class='DevStatusBox success TagGoogleChromeChromeOS25500'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- clang: Fix spurious &#39;../llvm/configure: line 541: 0: Bad file descriptor&#39; on clang roll try jobs.<br/><br/>The subprocess module used to dup() stdin, but apparently that&#39;s no longer true. So dup it manually.<br/>Patch from Jay Soffian &lt;jaysoffian@gmail.com&gt;!<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
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122838" target="_blank">122838</a>
- </td>
- <td class='DevName ' width="1%">
- yfriedman<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Win&number=9003", event); return false;'
- title='Google Chrome Win ETA: 88s' class='DevStatusBox running TagGoogleChromeWin9003'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17556", event); return false;'
- title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17556'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21863", event); return false;'
- title='Google Chrome Linux x64 build successful' class='DevStatusBox success TagGoogleChromeLinuxx6421863'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Mac' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25499", event); return false;'
- title='Google Chrome ChromeOS build successful' class='DevStatusBox success TagGoogleChromeChromeOS25499'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- 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/>include defines PAGE_SIZE.<br/><br/>BUG=113487<br/>TEST=<br/><br/><br/>Review URL: http://codereview.chromium.org/9425003
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev Alt DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122837" target="_blank">122837</a>
- </td>
- <td class='DevName Alt' width="1%">
- rsleevi<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus Alt DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Win&number=9003", event); return false;'
- title='Google Chrome Win ETA: 88s' class='DevStatusBox running TagGoogleChromeWin9003'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17555", event); return false;'
- title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17555'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21863", event); return false;'
- title='Google Chrome Linux x64 build successful' class='DevStatusBox success TagGoogleChromeLinuxx6421863'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Mac' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25499", event); return false;'
- title='Google Chrome ChromeOS build successful' class='DevStatusBox success TagGoogleChromeChromeOS25499'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Correct some header paths in GYP files<br/><br/>BUG=none<br/>TEST=MSVC 2010 doesn&#39;t needlessly recompile targets<br/>TBR=brettw<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9430010
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122836" target="_blank">122836</a>
- </td>
- <td class='DevName ' width="1%">
- thakis<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Win&number=9003", event); return false;'
- title='Google Chrome Win ETA: 88s' class='DevStatusBox running TagGoogleChromeWin9003'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17555", event); return false;'
- title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17555'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21862", event); return false;'
- title='Google Chrome Linux x64 build successful' class='DevStatusBox success TagGoogleChromeLinuxx6421862'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Mac' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25498", event); return false;'
- title='Google Chrome ChromeOS build successful' class='DevStatusBox success TagGoogleChromeChromeOS25498'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Fix a (harmless) clang warning in nss.<br/><br/>I&#39;d disable it instead, but net/third_party/nss is built as part<br/>of the normal &#39;net&#39; target, and gyp doesn&#39;t support per-file<br/>compiler flags.<br/><br/>BUG=none<br/>TEST=none<br/><br/><br/>Review URL: http://codereview.chromium.org/9427020
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev Alt DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122835" target="_blank">122835</a>
- </td>
- <td class='DevName Alt' width="1%">
- agl<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus Alt DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Win&number=9003", event); return false;'
- title='Google Chrome Win ETA: 88s' class='DevStatusBox running TagGoogleChromeWin9003'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17554", event); return false;'
- title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17554'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21862", event); return false;'
- title='Google Chrome Linux x64 build successful' class='DevStatusBox success TagGoogleChromeLinuxx6421862'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='Google Chrome Mac' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25497", event); return false;'
- title='Google Chrome ChromeOS build successful' class='DevStatusBox success TagGoogleChromeChromeOS25497'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- net: remove special case for Kaspersky HTTPS<br/><br/>Kaspersky released an 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://chromiumcodereview.appspot.com/9419014
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122834" target="_blank">122834</a>
- </td>
- <td class='DevName ' width="1%">
- thakis<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Win&number=9002", event); return false;'
- title='Google Chrome Win build successful' class='DevStatusBox success TagGoogleChromeWin9002'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17553", event); return false;'
- title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17553'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21861", event); return false;'
- title='Google Chrome Linux x64 build successful' class='DevStatusBox success TagGoogleChromeLinuxx6421861'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Mac&number=6434", event); return false;'
- title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running TagGoogleChromeMac6434'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25496", event); return false;'
- title='Google Chrome ChromeOS build successful' class='DevStatusBox success TagGoogleChromeChromeOS25496'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- mac: Make plugin_carbon_interpose&#39;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
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev Alt DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122833" target="_blank">122833</a>
- </td>
- <td class='DevName Alt' width="1%">
- thakis<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus Alt DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Win&number=9002", event); return false;'
- title='Google Chrome Win build successful' class='DevStatusBox success TagGoogleChromeWin9002'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17553", event); return false;'
- title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17553'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21861", event); return false;'
- title='Google Chrome Linux x64 build successful' class='DevStatusBox success TagGoogleChromeLinuxx6421861'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Mac&number=6434", event); return false;'
- title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running TagGoogleChromeMac6434'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25496", event); return false;'
- title='Google Chrome ChromeOS build successful' class='DevStatusBox success TagGoogleChromeChromeOS25496'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Call the built product of target gl &#39;gl_wrapper&#39;.<br/><br/>With the components build on mac, libgl.dylib collides with /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib (HFS+ is case-insensitive). libgl_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.chromium.org/9426019
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122832" target="_blank">122832</a>
- </td>
- <td class='DevName ' width="1%">
- vollick<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Win&number=9002", event); return false;'
- title='Google Chrome Win build successful' class='DevStatusBox success TagGoogleChromeWin9002'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17553", event); return false;'
- title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17553'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21860", event); return false;'
- title='Google Chrome Linux x64 build successful' class='DevStatusBox success TagGoogleChromeLinuxx6421860'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Mac&number=6434", event); return false;'
- title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running TagGoogleChromeMac6434'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25496", event); return false;'
- title='Google Chrome ChromeOS build successful' class='DevStatusBox success TagGoogleChromeChromeOS25496'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Don&#39;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 notice that the ui does not shrink when you open many windows.<br/><br/><br/>Review URL: http://codereview.chromium.org/9420030
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev Alt DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122831" target="_blank">122831</a>
- </td>
- <td class='DevName Alt' width="1%">
- glider<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus Alt DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Win&number=9002", event); return false;'
- title='Google Chrome Win build successful' class='DevStatusBox success TagGoogleChromeWin9002'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17553", event); return false;'
- title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17553'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21860", event); return false;'
- title='Google Chrome Linux x64 build successful' class='DevStatusBox success TagGoogleChromeLinuxx6421860'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Mac&number=6434", event); return false;'
- title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running TagGoogleChromeMac6434'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25496", event); return false;'
- title='Google Chrome ChromeOS build successful' class='DevStatusBox success TagGoogleChromeChromeOS25496'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Pass -asan-blacklist when building with ASan<br/>Review URL: https://chromiumcodereview.appspot.com/9424048
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122830" target="_blank">122830</a>
- </td>
- <td class='DevName ' width="1%">
- erikwright<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Win&number=9002", event); return false;'
- title='Google Chrome Win build successful' class='DevStatusBox success TagGoogleChromeWin9002'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17553", event); return false;'
- title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17553'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21860", event); return false;'
- title='Google Chrome Linux x64 build successful' class='DevStatusBox success TagGoogleChromeLinuxx6421860'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Mac&number=6434", event); return false;'
- title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running TagGoogleChromeMac6434'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25495", event); return false;'
- title='Google Chrome ChromeOS build successful' class='DevStatusBox success TagGoogleChromeChromeOS25495'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- These tests cannot run under chrome_frame_net_tests by design.<br/><br/>BUG=None<br/>TEST=chrome_frame_net_tests pass on IE8<br/><br/><br/>Review URL: http://codereview.chromium.org/9432001
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev Alt DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122829" target="_blank">122829</a>
- </td>
- <td class='DevName Alt' width="1%">
- ben<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus Alt DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Win&number=9002", event); return false;'
- title='Google Chrome Win build successful' class='DevStatusBox success TagGoogleChromeWin9002'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17552", event); return false;'
- title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17552'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21859", event); return false;'
- title='Google Chrome Linux x64 build successful' class='DevStatusBox success TagGoogleChromeLinuxx6421859'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Mac&number=6434", event); return false;'
- title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running TagGoogleChromeMac6434'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25494", event); return false;'
- title='Google Chrome ChromeOS build successful' class='DevStatusBox success TagGoogleChromeChromeOS25494'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- 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&amp;revision=122716<br/>Review URL: https://chromiumcodereview.appspot.com/9421016
- </td>
- </tr>
-
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122828" target="_blank">122828</a>
- </td>
- <td class='DevName ' width="1%">
- thakis<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Win&number=9001", event); return false;'
- title='Google Chrome Win failed compile' class='DevStatusBox failure TagGoogleChromeWin9001'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17551", event); return false;'
- title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17551'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21858", event); return false;'
- title='Google Chrome Linux x64 build successful' class='DevStatusBox success TagGoogleChromeLinuxx6421858'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Mac&number=6434", event); return false;'
- title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running TagGoogleChromeMac6434'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25493", event); return false;'
- title='Google Chrome ChromeOS build successful' class='DevStatusBox success TagGoogleChromeChromeOS25493'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Make IPC_MESSAGE_EXPORT more robust.<br/><br/>Currently, files that want to export ipc messages currently do<br/><br/>&nbsp; #undef IPC_MESSAGE_EXPORT<br/>&nbsp; #define IPC_MESSAGE_EXPORT&nbsp; CONTENT_EXPORT<br/><br/>at the top, and files that don&#39;t want to export ipc messages just do nothing. This is problematic if a cc file does<br/><br/>&nbsp; #include &#34;exported_messages.h&#34;<br/>&nbsp; #include &#34;not_exported_messages.h&#34;<br/><br/>because the second header file picks up the #define from the first file and declares all its messages as exported. In other translation units, where not_exported_messages.h is #included without another header above it, the messages will get default visibility – so the same class ends up with different visibilities in different translation units.<br/><br/>Instead, let ipc_message_macros.h #undef IPC_MESSAGE_EXPORT outside of the include guard, so that all files that don&#39;t set the define see 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
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevDetails '>
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
- <li>Google Chrome Win: compile failed - &nbsp;<a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/stdio"> stdio </a> - <a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/stdio_html"> stdio_html </a> - <a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/webkit_unit_tests%20-%202233%20error%28s%29"> webkit_unit_tests - 2233 error(s) </a> - <a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/warnings"> warnings </a></li>
- </ul>
- </td>
- </tr>
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev Alt DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122827" target="_blank">122827</a>
- </td>
- <td class='DevName Alt' width="1%">
- jam<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus Alt DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Win&number=9001", event); return false;'
- title='Google Chrome Win failed compile' class='DevStatusBox failure TagGoogleChromeWin9001'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17551", event); return false;'
- title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17551'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21858", event); return false;'
- title='Google Chrome Linux x64 build successful' class='DevStatusBox success TagGoogleChromeLinuxx6421858'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Mac&number=6434", event); return false;'
- title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running TagGoogleChromeMac6434'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25493", event); return false;'
- title='Google Chrome ChromeOS build successful' class='DevStatusBox success TagGoogleChromeChromeOS25493'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Get rid of the MockResourceContext singleton. It&#39;s just simpler to have each test create one if it needs it.<br/><br/>BUG=98716<br/>Review URL: https://chromiumcodereview.appspot.com/9423046
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevDetails Alt'>
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
- <li>Google Chrome Win: compile failed - &nbsp;<a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/stdio"> stdio </a> - <a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/stdio_html"> stdio_html </a> - <a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/webkit_unit_tests%20-%202233%20error%28s%29"> webkit_unit_tests - 2233 error(s) </a> - <a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/warnings"> warnings </a></li>
- </ul>
- </td>
- </tr>
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122826" target="_blank">122826</a>
- </td>
- <td class='DevName ' width="1%">
- grunell<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Win&number=9001", event); return false;'
- title='Google Chrome Win failed compile' class='DevStatusBox failure TagGoogleChromeWin9001'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17551", event); return false;'
- title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17551'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21858", event); return false;'
- title='Google Chrome Linux x64 build successful' class='DevStatusBox success TagGoogleChromeLinuxx6421858'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Mac&number=6434", event); return false;'
- title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running TagGoogleChromeMac6434'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25492", event); return false;'
- title='Google Chrome ChromeOS build successful' class='DevStatusBox success TagGoogleChromeChromeOS25492'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Handling failure of creating PeerConnection factory instead of crashing.<br/><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 app so we have to silently fail.<br/><br/>BUG=112442,114006,114396<br/>TEST=For example call getUserMedia with a default audio device set to 96 kHz sampling frequency.<br/><br/>Review URL: http://codereview.chromium.org/9395085
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevDetails '>
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
- <li>Google Chrome Win: compile failed - &nbsp;<a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/stdio"> stdio </a> - <a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/stdio_html"> stdio_html </a> - <a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/webkit_unit_tests%20-%202233%20error%28s%29"> webkit_unit_tests - 2233 error(s) </a> - <a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/warnings"> warnings </a></li>
- </ul>
- </td>
- </tr>
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev Alt DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122825" target="_blank">122825</a>
- </td>
- <td class='DevName Alt' width="1%">
- rnk<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus Alt DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Win&number=9001", event); return false;'
- title='Google Chrome Win failed compile' class='DevStatusBox failure TagGoogleChromeWin9001'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17550", event); return false;'
- title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17550'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21857", event); return false;'
- title='Google Chrome Linux x64 build successful' class='DevStatusBox success TagGoogleChromeLinuxx6421857'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Mac&number=6434", event); return false;'
- title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running TagGoogleChromeMac6434'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25491", event); return false;'
- title='Google Chrome ChromeOS build successful' class='DevStatusBox success TagGoogleChromeChromeOS25491'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Widen memcheck suppressions to cover a leak in RWHVAura.<br/><br/>TBR=hbono@chromium.org<br/>BUG=112798<br/>TEST=<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9432002
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevDetails Alt'>
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
- <li>Google Chrome Win: compile failed - &nbsp;<a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/stdio"> stdio </a> - <a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/stdio_html"> stdio_html </a> - <a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/webkit_unit_tests%20-%202233%20error%28s%29"> webkit_unit_tests - 2233 error(s) </a> - <a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/warnings"> warnings </a></li>
- </ul>
- </td>
- </tr>
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
- <tr>
- <td class='DevRev DevRevCollapse' width="1%">
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=122824" target="_blank">122824</a>
- </td>
- <td class='DevName ' width="1%">
- junov<span style="display:none">ohnoyoudont</span>@chromium.org
- </td>
-
- <td class='DevStatus DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Win&number=9001", event); return false;'
- title='Google Chrome Win failed compile' class='DevStatusBox failure TagGoogleChromeWin9001'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux&number=17549", event); return false;'
- title='Google Chrome Linux build successful' class='DevStatusBox success TagGoogleChromeLinux17549'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Linux%20x64&number=21856", event); return false;'
- title='Google Chrome Linux x64 build successful' class='DevStatusBox success TagGoogleChromeLinuxx6421856'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20Mac&number=6434", event); return false;'
- title='Google Chrome Mac ETA: 1614s' class='DevStatusBox running TagGoogleChromeMac6434'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Google%20Chrome%20ChromeOS&number=25490", event); return false;'
- title='Google Chrome ChromeOS build successful' class='DevStatusBox success TagGoogleChromeChromeOS25490'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Adding test content to the throughput tests to measure 2d canvas <br/>blitting performance<br/><br/>BUG=http://code.google.com/p/chromium/issues/detail?id=97666<br/>TEST=throughput tests<br/>Review URL: https://chromiumcodereview.appspot.com/9355016
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevDetails '>
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
- <li>Google Chrome Win: compile failed - &nbsp;<a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/stdio"> stdio </a> - <a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/stdio_html"> stdio_html </a> - <a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/webkit_unit_tests%20-%202233%20error%28s%29"> webkit_unit_tests - 2233 error(s) </a> - <a href="console/../builders/Google%20Chrome%20Win/builds/9001/steps/compile/logs/warnings"> warnings </a></li>
- </ul>
- </td>
- </tr>
-
-
- <tr class='DevStatusSpacing'>
- <td>
- </td>
- </tr>
-
-</table>
-</div>
-
-
-<div id="divBox" onmouseout="if (checkMouseLeave(this, event)) this.style.display = 'None'" class="BuildWaterfall">
-</div>
-
-
-<iframe id="frameBox" style="display: none;"></iframe>
-
-<script type="text/javascript">
-// replace 'onload="updateDiv(event);" with this, as iframe doesn't have onload event in xhtml
-window.addEventListener("load", function() {
- document.getElementById('frameBox').onload = function(event) {
- updateDiv(event);
- };
-}, false);
-</script>
-
-</div><div class="footer" style="clear:both">
- <hr/>
- [ <a class='collapse' href='#' OnClick='collapse(); return false;'>collapse</a>
- <a class='uncollapse' href='#' OnClick='uncollapse(); return false;'>un-collapse</a>
- <a class='merge' href="#" OnClick="merge(); return false;">merge</a>
- <a class='unmerge' style='display: none' href="#" OnClick="unmerge(); return false;">un-merge</a> ]
- <p>Debug info: {'revision_final': 25, 'builds_scanned': 200, 'source_all': 25, 'source_len': 25, 'last_revision': u'122824', 'from_cache': 61, 'added_blocks': 0, 'load_time': 0.30434489250183105}</p>
-</div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698