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

Unified Diff: Tools/GardeningServer/ui/ct-results-by-builder.html

Issue 728023004: Remove GardeningServer. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « Tools/GardeningServer/ui/ct-popup-menu.html ('k') | Tools/GardeningServer/ui/ct-results-comparison.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/ui/ct-results-by-builder.html
diff --git a/Tools/GardeningServer/ui/ct-results-by-builder.html b/Tools/GardeningServer/ui/ct-results-by-builder.html
deleted file mode 100644
index cf5fee8abfdbc3ae9e2ee46578a7fed107d457ed..0000000000000000000000000000000000000000
--- a/Tools/GardeningServer/ui/ct-results-by-builder.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<!--
-Copyright 2014 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-
-<link rel="import" href="../bower_components/core-pages/core-pages.html">
-<link rel="import" href="../bower_components/paper-tabs/paper-tab.html">
-<link rel="import" href="../bower_components/paper-tabs/paper-tabs.html">
-<link rel="import" href="ct-results-detail.html">
-
-<polymer-element name="ct-results-by-builder" attributes="failure">
- <template>
- <style>
- :host {
- display: block;
- }
- paper-tabs::shadow #selectionBar {
- background-color: #212121;
- height: 4px;
- }
- paper-tab {
- border: 1px solid #212121;
- border-radius: 5px 5px 0 0;
- }
- paper-tab::shadow #ink {
- color: #212121;
- }
- </style>
- <paper-tabs selected="{{ selected }}">
- <template repeat="{{ builder in builders }}">
- <paper-tab>{{ builder }}</paper-tab>
- </template>
- </paper-tabs>
- <ct-results-detail failure="{{ failure }}" builder="{{ builders[selected] }}"></ct-results-detail>
- </template>
- <script>
- Polymer({
- failure: null,
- builders: [],
- selected: 0,
-
- failureChanged: function() {
- this.builders = Object.getOwnPropertyNames(this.failure.resultNodesByBuilder).sort();
- this.selected = 0;
- },
- });
- </script>
-</polymer-element>
« no previous file with comments | « Tools/GardeningServer/ui/ct-popup-menu.html ('k') | Tools/GardeningServer/ui/ct-results-comparison.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698