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

Side by Side Diff: Tools/GardeningServer/ui/ct-unexpected-failures.html

Issue 498523002: [Sheriff-o-matic] Use likely_revisions instead of first_failing/last_passing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase + no sort Created 6 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!-- 1 <!--
2 Copyright 2014 The Chromium Authors. All rights reserved. 2 Copyright 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 6
7 <link rel="import" href="../bower_components/paper-button/paper-button.html"> 7 <link rel="import" href="../bower_components/paper-button/paper-button.html">
8 <link rel="import" href="../lib/ct-scheduled-updater.html"> 8 <link rel="import" href="../lib/ct-scheduled-updater.html">
9 <link rel="import" href="../model/ct-commit-log.html"> 9 <link rel="import" href="../model/ct-commit-log.html">
10 <link rel="import" href="../model/tree-status.html"> 10 <link rel="import" href="../model/tree-status.html">
(...skipping 20 matching lines...) Expand all
31 padding: 0; 31 padding: 0;
32 } 32 }
33 33
34 .toolbar { 34 .toolbar {
35 display: flex; 35 display: flex;
36 justify-content: space-between; 36 justify-content: space-between;
37 align-items: baseline; 37 align-items: baseline;
38 padding: 0 5px; 38 padding: 0 5px;
39 } 39 }
40 </style> 40 </style>
41 <ct-failure-analyzer id="analyzer" failures="{{ failures }}" builderLatestRe visions="{{ builderLatestRevisions }}" lastUpdateDate="{{ lastUpdateDate }}"></c t-failure-analyzer> 41 <ct-failure-analyzer id="analyzer" commitLog="{{ commitLog }}" failures="{{ failures }}" builderLatestRevisions="{{ builderLatestRevisions }}" lastUpdateDat e="{{ lastUpdateDate }}"></ct-failure-analyzer>
42 <div class="toolbar"> 42 <div class="toolbar">
43 <ct-revision-details id="revisionDetails" builderLatestRevisions="{{ build erLatestRevisions }}" commitLog="{{ commitLog }}" tree="{{ tree }}"></ct-revisio n-details> 43 <ct-revision-details id="revisionDetails" builderLatestRevisions="{{ build erLatestRevisions }}" commitLog="{{ commitLog }}" tree="{{ tree }}"></ct-revisio n-details>
44 <a href="https://code.google.com/p/chromium/wiki/UsefulURLs">Useful URLs</ a> 44 <a href="https://code.google.com/p/chromium/wiki/UsefulURLs">Useful URLs</ a>
45 </div> 45 </div>
46 <ct-tree-status status="{{ treeStatuses['chromium'] }}" state="{{ treeStatus es['chromium'].status }}"></ct-tree-status> 46 <ct-tree-status status="{{ treeStatuses['chromium'] }}" state="{{ treeStatus es['chromium'].status }}"></ct-tree-status>
47 <ct-tree-status status="{{ treeStatuses['blink'] }}" state="{{ treeStatuses[ 'blink'].status }}"></ct-tree-status> 47 <ct-tree-status status="{{ treeStatuses['blink'] }}" state="{{ treeStatuses[ 'blink'].status }}"></ct-tree-status>
48 <ct-party-time failures="{{ failures }}" tree="{{ tree }}"></ct-party-time> 48 <ct-party-time failures="{{ failures }}" tree="{{ tree }}"></ct-party-time>
49 <ct-failure-stream category="default" groups="{{ failures[tree] }}" commitLo g="{{ commitLog }}" tree="{{ tree }}"></ct-failure-stream> 49 <ct-failure-stream category="default" groups="{{ failures[tree] }}" commitLo g="{{ commitLog }}" tree="{{ tree }}"></ct-failure-stream>
50 <ct-failure-stream category="snoozed" groups="{{ failures[tree] }}" commitLo g="{{ commitLog }}" tree="{{ tree }}"></ct-failure-stream> 50 <ct-failure-stream category="snoozed" groups="{{ failures[tree] }}" commitLo g="{{ commitLog }}" tree="{{ tree }}"></ct-failure-stream>
51 </template> 51 </template>
(...skipping 24 matching lines...) Expand all
76 this.commitLog.update(); 76 this.commitLog.update();
77 this.$.analyzer.update(); 77 this.$.analyzer.update();
78 Object.keys(this.treeStatuses, function(tree, status) { 78 Object.keys(this.treeStatuses, function(tree, status) {
79 status.update(); 79 status.update();
80 }); 80 });
81 }, 81 },
82 }); 82 });
83 })(); 83 })();
84 </script> 84 </script>
85 </polymer-element> 85 </polymer-element>
OLDNEW
« no previous file with comments | « Tools/GardeningServer/ui/ct-failure-card.html ('k') | Tools/GardeningServer/ui/test/ct-commit-list-tests.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698