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

Unified Diff: tests/test_console_merger/chromium_memory_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/chromium_memory_console_input.html
diff --git a/tests/test_console_merger/chromium_memory_console_input.html b/tests/test_console_merger/chromium_memory_console_input.html
deleted file mode 100644
index 87cd65278e8599c9e1441b7f20a7dd688a19aad8..0000000000000000000000000000000000000000
--- a/tests/test_console_merger/chromium_memory_console_input.html
+++ /dev/null
@@ -1,1995 +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 Memory</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/ASAN%20Builder' title='ASAN Builder' class='DevSlaveBox success' target="_blank">
- </a>
- </td>
-
- <td class='DevSlaveBox'>
- <a href='./builders/ASAN%20Tests%20%281%29' title='ASAN Tests (1)' class='DevSlaveBox success' target="_blank">
- </a>
- </td>
-
- <td class='DevSlaveBox'>
- <a href='./builders/ASAN%20Tests%20%282%29' title='ASAN Tests (2)' class='DevSlaveBox failure' 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=122177" target="_blank">122177</a>
- </td>
- <td class='DevName ' width="1%">
- evan<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='ASAN Builder' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='ASAN Tests (1)' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='ASAN Tests (2)' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Remove myself from base/OWNERS.<br/><br/>I don&#39;t want to be involved in it.
- </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=122176" target="_blank">122176</a>
- </td>
- <td class='DevName Alt' width="1%">
- yzshen<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='ASAN Builder' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='ASAN Tests (1)' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='ASAN Tests (2)' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Implement device enumeration for PPB_VideoCapture_Dev.<br/><br/>- Implement PPB_VideoCapture_Dev v0.2.<br/>- Use a ref-counted PlatformVideoCapture to manage lifespan of media::VideoCapture::EventHandler, instead of manipulating the ref count of PPB_VideoCapture_Impl.<br/>- Extend examples/video_capture.<br/><br/>BUG=None<br/>TEST=examples/video_capture<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9234064
- </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=122175" target="_blank">122175</a>
- </td>
- <td class='DevName ' width="1%">
- aaronlevbugs<span style="display:none">ohnoyoudont</span>@gmail.com
- </td>
-
- <td class='DevStatus DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='ASAN Builder' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='ASAN Tests (1)' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;'
- title='ASAN Tests (2)' class='DevStatusBox notstarted '
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Expose correct MSAA roles for ARIA tab-related roles.<br/><br/>BUG=89180<br/>TEST=Manually, with accProbe<br/><br/><br/>Review URL: http://codereview.chromium.org/9391020
- </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=122173" target="_blank">122173</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=ASAN%20Builder&number=11498", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11498'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5813", event); return false;'
- title='ASAN Tests (1) ETA: 798s' class='DevStatusBox running TagASANTests15813'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4467", event); return false;'
- title='ASAN Tests (2) ETA: 1101s' class='DevStatusBox running TagASANTests24467'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Update new size of ProfileImpl
- </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=122170" target="_blank">122170</a>
- </td>
- <td class='DevName ' width="1%">
- jam<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=ASAN%20Builder&number=11497", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11497'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5812", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15812'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4467", event); return false;'
- title='ASAN Tests (2) ETA: 1101s' class='DevStatusBox running TagASANTests24467'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Temporarily ifdef out COMPILE_ASSERT on Linux that checks ProfileImpl&#39;s size while I figure out the correct new size. ProfileImpl derives from Profile which derives from BrowserContext and now I made it derive from base::SupportsUserData.<br/>Review URL: https://chromiumcodereview.appspot.com/9407022
- </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=122169" target="_blank">122169</a>
- </td>
- <td class='DevName Alt' width="1%">
- abodenha<span style="display:none">ohnoyoudont</span>@google.com
- </td>
-
- <td class='DevStatus Alt DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Builder&number=11496", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11496'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5812", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15812'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4467", event); return false;'
- title='ASAN Tests (2) ETA: 1101s' class='DevStatusBox running TagASANTests24467'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Launch Chrome DL page if we try to print without Chrome installed.<br/><br/>BUG=112019<br/>TEST=<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9398001
- </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=122168" target="_blank">122168</a>
- </td>
- <td class='DevName ' width="1%">
- evan<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=ASAN%20Builder&number=11495", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11495'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5811", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15811'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4467", event); return false;'
- title='ASAN Tests (2) ETA: 1101s' class='DevStatusBox running TagASANTests24467'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Flakiness cleanup: disable remaining flaky tests in src/<br/><br/>See https://groups.google.com/a/chromium.org/group/chromium-dev/browse_thread/thread/fcec09fc659f39a6<br/><br/>BUG=114386,109405,38404<br/>TBR=sky<br/><br/>Review URL: http://codereview.chromium.org/9405024
- </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=122166" target="_blank">122166</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=ASAN%20Builder&number=11494", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11494'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5811", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15811'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4467", event); return false;'
- title='ASAN Tests (2) ETA: 1101s' class='DevStatusBox running TagASANTests24467'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Display an interstitial for weak key errors.<br/><br/>Without this, the request is canceled, but no interstitial is shown.<br/><br/>I have checked that all other ERR_CERT_ errors are handled and only<br/>ERR_CERT_NON_UNIQUE_NAME is missing. However, I don&#39;t see that<br/>ERR_CERT_NON_UNIQUE_NAME can actually be returned, so that&#39;s probably<br/>fine.<br/><br/>(There is also ERR_CERT_NOT_IN_DNS, but that should be removed.)<br/><br/>BUG=113645<br/>TEST=Import a 512-bit CA (see bug) and try to navigate to a site which uses it. Verify that an interstitial is shown.<br/><br/>https://chromiumcodereview.appspot.com/9358060/
- </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=122164" target="_blank">122164</a>
- </td>
- <td class='DevName ' width="1%">
- jam<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=ASAN%20Builder&number=11493", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11493'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5811", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15811'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4466", event); return false;'
- title='ASAN Tests (2) failed browser_tests' class='DevStatusBox failure TagASANTests24466'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Add extra data to BrowserContext so that content layer and other embedders can stash data with it that has the same lifetime. Converted SSLHostState to use it for now. I&#39;ll do the rest in a followup.<br/><br/>BUG=98716<br/>Review URL: https://chromiumcodereview.appspot.com/9348109
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevDetails '>
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
- <li>ASAN Tests (2): browser_tests failed 1 - &nbsp;<a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/DownloadsCloseCheck_5"> DownloadsCloseCheck_5 </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=122163" target="_blank">122163</a>
- </td>
- <td class='DevName Alt' width="1%">
- sadrul<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=ASAN%20Builder&number=11492", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11492'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5811", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15811'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4466", event); return false;'
- title='ASAN Tests (2) failed browser_tests' class='DevStatusBox failure TagASANTests24466'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Some touch-event forwarding optimization.<br/><br/>If there is no touch-event handler installed for a webpage, then do not send<br/>touch-events.<br/><br/>Corresponding webkit change: https://bugs.webkit.org/show_bug.cgi?id=77440<br/><br/>BUG=110237<br/>TEST=none (suggestions?)<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9233058
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevDetails Alt'>
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
- <li>ASAN Tests (2): browser_tests failed 1 - &nbsp;<a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/DownloadsCloseCheck_5"> DownloadsCloseCheck_5 </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=122162" target="_blank">122162</a>
- </td>
- <td class='DevName ' width="1%">
- sergeyu<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=ASAN%20Builder&number=11492", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11492'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5811", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15811'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4466", event); return false;'
- title='ASAN Tests (2) failed browser_tests' class='DevStatusBox failure TagASANTests24466'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Remove old client dependencies that we don&#39;t need anymore.<br/><br/>BUG=74951<br/><br/><br/>Review URL: http://codereview.chromium.org/9361075
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevDetails '>
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
- <li>ASAN Tests (2): browser_tests failed 1 - &nbsp;<a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/DownloadsCloseCheck_5"> DownloadsCloseCheck_5 </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=122161" target="_blank">122161</a>
- </td>
- <td class='DevName Alt' width="1%">
- francoisk777<span style="display:none">ohnoyoudont</span>@gmail.com
- </td>
-
- <td class='DevStatus Alt DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Builder&number=11491", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11491'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5810", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15810'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4466", event); return false;'
- title='ASAN Tests (2) failed browser_tests' class='DevStatusBox failure TagASANTests24466'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Linux: Overlay Chrome window icon with profile avatar or Incognito<br/>emblem/badge.<br/><br/>The window icon will consist of the usual Chrome product icon with the emblem<br/>in the bottom-right corner.<br/><br/>BUG=108455<br/>TEST=Manual. 1) Incognito window icons are always emblemed with the Incognito<br/>icon, regardless of whether multi-profile is enabled or the number of<br/>profiles. 2) With only one profile, regular window icons are not emblemed (but<br/>Incognito ones are). 3) With more than one profile, all window icons are<br/>emblemed: regular windows&#39; icons with the current profile&#39;s avatar, and<br/>Incognito window icons with the Incognito icon. 4) Icons from the current<br/>screen&#39;s theme should take precedence over those packaged with Chrome. 5) If<br/>no Chrome icons exist in the current screen&#39;s theme, the product icons<br/>packaged with Chrome should be used. 6) If the user changes his profile<br/>avatar, all of that profile&#39;s windows&#39; icons should be updated to reflect the<br/>change. 7) If the (system or Chrome) theme is changed, all windows&#39; icons<br/>should
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevDetails Alt'>
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
- <li>ASAN Tests (2): browser_tests failed 1 - &nbsp;<a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/DownloadsCloseCheck_5"> DownloadsCloseCheck_5 </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=122160" target="_blank">122160</a>
- </td>
- <td class='DevName ' width="1%">
- wangxianzhu<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=ASAN%20Builder&number=11490", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11490'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5810", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15810'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4466", event); return false;'
- title='ASAN Tests (2) failed browser_tests' class='DevStatusBox failure TagASANTests24466'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Fix style issues of tools/android<br/><br/>Review URL: http://codereview.chromium.org/9402017
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevDetails '>
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
- <li>ASAN Tests (2): browser_tests failed 1 - &nbsp;<a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/DownloadsCloseCheck_5"> DownloadsCloseCheck_5 </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=122159" target="_blank">122159</a>
- </td>
- <td class='DevName Alt' width="1%">
- rdsmith<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=ASAN%20Builder&number=11490", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11490'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5810", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15810'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4466", event); return false;'
- title='ASAN Tests (2) failed browser_tests' class='DevStatusBox failure TagASANTests24466'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Isolate initiation counts for downloads to their own histograms and improve<br/>naming.<br/><br/>BUG=None<br/><br/><br/>Review URL: http://codereview.chromium.org/9316116
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevDetails Alt'>
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
- <li>ASAN Tests (2): browser_tests failed 1 - &nbsp;<a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/DownloadsCloseCheck_5"> DownloadsCloseCheck_5 </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=122155" target="_blank">122155</a>
- </td>
- <td class='DevName ' width="1%">
- chrome-release<span style="display:none">ohnoyoudont</span>@google.com
- </td>
-
- <td class='DevStatus DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Builder&number=11489", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11489'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5809", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15809'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4466", event); return false;'
- title='ASAN Tests (2) failed browser_tests' class='DevStatusBox failure TagASANTests24466'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Updating trunk VERSION from 1043.0 to 1044.0
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevDetails '>
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'>
- <li>ASAN Tests (2): browser_tests failed 1 - &nbsp;<a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/ASAN%20Tests%20%282%29/builds/4466/steps/browser_tests/logs/DownloadsCloseCheck_5"> DownloadsCloseCheck_5 </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=122151" target="_blank">122151</a>
- </td>
- <td class='DevName Alt' width="1%">
- vollick<span style="display:none">ohnoyoudont</span>@google.com
- </td>
-
- <td class='DevStatus Alt DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Builder&number=11488", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11488'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5808", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15808'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4465", event); return false;'
- title='ASAN Tests (2) build successful' class='DevStatusBox success TagASANTests24465'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Revert 122135 - PRESUBMIT check for JavaScript style errors<br/><br/>Attempt to fix check_licenses<br/><br/>See https://groups.google.com/a/chromium.org/group/chromium-dev/browse_thread/thread/97b5dc28d9e5109b/a5bd070bb7f0a4b9<br/><br/>BUG=none<br/>TEST=modify any .js file; `git commit` it; run `git cl presubmit`; look at the errors<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9288045<br/><br/>TBR=tbreisacher@chromium.org<br/>Review URL: https://chromiumcodereview.appspot.com/9401023
- </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=122149" target="_blank">122149</a>
- </td>
- <td class='DevName ' width="1%">
- noelallen<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=ASAN%20Builder&number=11487", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11487'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5808", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15808'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4465", event); return false;'
- title='ASAN Tests (2) build successful' class='DevStatusBox success TagASANTests24465'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Fix PNaCl SDK Builder<br/><br/>Change download script to make sure &#39;pnacl&#39; sdk builder gets toolchain.<br/>Change tarball name for pnacl build to avoid collision.<br/>For now have pnacl toolchain only build pnacl pieces.<br/><br/>TBR= sehr@google.com<br/>BUG=11292<br/><br/>Review URL: http://codereview.chromium.org/9408003
- </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=122148" target="_blank">122148</a>
- </td>
- <td class='DevName Alt' width="1%">
- sergeyu<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=ASAN%20Builder&number=11487", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11487'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5808", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15808'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4465", event); return false;'
- title='ASAN Tests (2) build successful' class='DevStatusBox success TagASANTests24465'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Messaging-based interface support in the webapp.<br/><br/>The new ClientPluginAsync implements messaging-based client plugin <br/>interface. It&#39;s now used for client plugins that support it <br/>(version 5 and above).<br/><br/>BUG=86353<br/><br/><br/>Review URL: http://codereview.chromium.org/9360053
- </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=122147" target="_blank">122147</a>
- </td>
- <td class='DevName ' width="1%">
- zea<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=ASAN%20Builder&number=11486", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11486'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5807", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15807'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4465", event); return false;'
- title='ASAN Tests (2) build successful' class='DevStatusBox success TagASANTests24465'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- [Sync] Re-disable bookmark favicon test.<br/><br/>Related change didn&#39;t wind up fixing as hoped.<br/><br/>TBR=dpapad<br/>BUG=94941<br/>TEST=<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9406021
- </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=122146" target="_blank">122146</a>
- </td>
- <td class='DevName Alt' width="1%">
- tommi<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=ASAN%20Builder&number=11485", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11485'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5807", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15807'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4464", event); return false;'
- title='ASAN Tests (2) build successful' class='DevStatusBox success TagASANTests24464'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Update DCHECKs in AlsaPcmOutputStream to account for NULL message loop.<br/><br/>TBR=xians<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9403027
- </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=122145" target="_blank">122145</a>
- </td>
- <td class='DevName ' width="1%">
- bartfab<span style="display:none">ohnoyoudont</span>@google.com
- </td>
-
- <td class='DevStatus DevStatusCollapse'>
- <table width="100%">
- <tr>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Builder&number=11485", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11485'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5807", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15807'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4464", event); return false;'
- title='ASAN Tests (2) build successful' class='DevStatusBox success TagASANTests24464'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Rename the ephemeral_users field in the device policy protobuf<br/><br/>This CL renames the &#34;ephemeral_users&#34; in the device policy protobuf<br/>to &#34;ephemeral_users_enabled&#34;, making it clear that this is a Boolean<br/>setting.<br/><br/>BUG=chromium-os:26406<br/>TEST=unit_test *Policy* and CrosSettingsTest.SetEphemeralUsersEnabled<br/>TEST=chrome builds and runs<br/><br/><br/>Review URL: http://codereview.chromium.org/9365078
- </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=122144" target="_blank">122144</a>
- </td>
- <td class='DevName Alt' width="1%">
- jhawkins<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=ASAN%20Builder&number=11484", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11484'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5807", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15807'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4464", event); return false;'
- title='ASAN Tests (2) build successful' class='DevStatusBox success TagASANTests24464'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- Settings: Fix setting the title when loading a specific page.<br/><br/>There are three places we need to set the title:<br/>* Showing a page.<br/>* Showing an overlay.<br/>* Updating history, .e.g., after closing an overlay.<br/><br/>BUG=113940<br/>TEST=none<br/>R=csilv<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9405023
- </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=122142" target="_blank">122142</a>
- </td>
- <td class='DevName ' width="1%">
- keybuk<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=ASAN%20Builder&number=11483", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11483'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5806", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15806'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4464", event); return false;'
- title='ASAN Tests (2) build successful' class='DevStatusBox success TagASANTests24464'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Update cros.DEPS<br/><br/>Added common bluetooth properties constants to cros_system_api<br/>needed by bluetooth properties code.<br/><br/>BUG=chromium-os:22086<br/>TEST=verified cros_set_ver pins the newer version<br/><br/>Change-Id: Ie299d796cee3bd97b6f49a8ac86aa30c5c99283f<br/><br/><br/>Review URL: http://codereview.chromium.org/9401015
- </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=122141" target="_blank">122141</a>
- </td>
- <td class='DevName Alt' width="1%">
- dbeam<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=ASAN%20Builder&number=11482", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11482'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5806", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15806'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4464", event); return false;'
- title='ASAN Tests (2) build successful' class='DevStatusBox success TagASANTests24464'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment Alt'>
- [Clean up] OS_MAC -&gt; OS_MACOSX<br/><br/>R=thakis@chromium.org,brettw@chromium.org<br/>TBR=cpu@chromium.org<br/>BUG=None<br/>TEST=Less developers accidentally OS_MAC<br/>NOTRY=true<br/><br/>Review URL: http://codereview.chromium.org/9404012
- </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=122140" target="_blank">122140</a>
- </td>
- <td class='DevName ' width="1%">
- tdresser<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=ASAN%20Builder&number=11482", event); return false;'
- title='ASAN Builder build successful' class='DevStatusBox success TagASANBuilder11482'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%281%29&number=5806", event); return false;'
- title='ASAN Tests (1) build successful' class='DevStatusBox success TagASANTests15806'
- target="_blank"></a>
- </td>
- <td class='DevStatusBox'>
- <a href='#' onclick='showBuildBox("./buildstatus?builder=ASAN%20Tests%20%282%29&number=4464", event); return false;'
- title='ASAN Tests (2) build successful' class='DevStatusBox success TagASANTests24464'
- target="_blank"></a>
- </td>
-
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td colspan="3" class='DevComment '>
- Gesture Recognizer Diagram now references design document on chromium.org. <br/><br/>https://sites.google.com/a/chromium.org/dev/developers/design-documents/aura/gesture-recognizer<br/>BUG=none<br/>TEST=none<br/><br/>Review URL: http://codereview.chromium.org/9404013
- </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': 120, 'source_all': 25, 'source_len': 25, 'last_revision': u'122140', 'from_cache': 0, 'added_blocks': 60, 'load_time': 0.37749218940734863}</p>
-</div>
-</body>
-</html>
« no previous file with comments | « tests/test_console_merger/chromium_main_console_input.html ('k') | tests/test_console_merger/chromium_merged_console.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698