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

Unified Diff: Tools/GardeningServer/model/ct-trooper-failure-group-data.html

Issue 476903004: [sheriff-o-matic]: Basic trooper display for sheriff-o-matic. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: Tools/GardeningServer/model/ct-trooper-failure-group-data.html
diff --git a/Tools/GardeningServer/model/ct-trooper-failure-group-data.html b/Tools/GardeningServer/model/ct-trooper-failure-group-data.html
new file mode 100644
index 0000000000000000000000000000000000000000..636bfa4e0c5d3cee7196aa55aaffdba6ac22abe9
--- /dev/null
+++ b/Tools/GardeningServer/model/ct-trooper-failure-group-data.html
@@ -0,0 +1,27 @@
+<!--
+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.
+-->
+
+<script>
+function CTTrooperFailureGroupData(details, url, raw, type, tree) {
+ this.details = details;
+ this.url = url;
+ this.data = raw;
+ this.type = type;
+ this.tree = tree;
+};
+
+CTTrooperFailureGroupData.prototype.getAnnotations = function() {
+ return [];
+};
+
+CTTrooperFailureGroupData.prototype.dataToExamine = function() {
+ return {url: this.url};
+};
+
+CTTrooperFailureGroupData.prototype.failureKeys = function() {
+ return [];
+};
+</script>
« no previous file with comments | « Tools/GardeningServer/model/ct-tree-list.html ('k') | Tools/GardeningServer/model/test/ct-failure-group-tests.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698