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

Unified Diff: Tools/GardeningServer/model/ct-commit-log-mock.html

Issue 404463003: Move commit list and builder latest revisions up to ct-unexpected-failures (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address review comments Created 6 years, 5 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-commit-log-mock.html
diff --git a/Tools/GardeningServer/model/ct-commit-log-mock.html b/Tools/GardeningServer/model/ct-commit-log-mock.html
new file mode 100644
index 0000000000000000000000000000000000000000..8d48ec079bbdd0d92d959a48c74c3eebe4745b35
--- /dev/null
+++ b/Tools/GardeningServer/model/ct-commit-log-mock.html
@@ -0,0 +1,22 @@
+<!--
+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='ct-commit-log.html'>
+
+<link rel='import' href='ct-commit-mock.html'>
+
+<script>
+(function () {
+
+window.CTCommitLogMock = function() {
+ var log = new CTCommitLog();
+ var commit = new CTCommitMock();
+ log[commit.revision] = commit;
+ return log;
+};
+
+})();
+</script>
« no previous file with comments | « Tools/GardeningServer/model/ct-commit-log.html ('k') | Tools/GardeningServer/model/ct-commit-log-tests.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698