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

Unified Diff: Tools/GardeningServer/scripts/model.js

Issue 355193005: Remove checkout functionality from GOM (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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
« no previous file with comments | « Tools/GardeningServer/scripts/controllers.js ('k') | Tools/GardeningServer/scripts/ui.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/scripts/model.js
diff --git a/Tools/GardeningServer/scripts/model.js b/Tools/GardeningServer/scripts/model.js
index cc2737033badee1590f739dc213b02129a14121c..71bb759940c418decb42ade7eb78e8463a0bbeca 100644
--- a/Tools/GardeningServer/scripts/model.js
+++ b/Tools/GardeningServer/scripts/model.js
@@ -31,7 +31,6 @@ var kCommitLogLength = 50;
model.state = {};
model.state.failureAnalysisByTest = {};
-model.state.expectationsUpdateQueue = [];
function findAndMarkRevertedRevisions(commitDataList)
{
@@ -72,18 +71,6 @@ function heuristicallyNarrowRegressionRange(failureAnalysis)
}
}
-model.queueForExpectationUpdate = function(failureInfo)
-{
- model.state.expectationsUpdateQueue.push(failureInfo);
-};
-
-model.takeExpectationUpdateQueue = function()
-{
- var queue = model.state.expectationsUpdateQueue;
- model.state.expectationsUpdateQueue = [];
- return queue;
-};
-
var g_commitIndex = {};
model.updateRecentCommits = function()
« no previous file with comments | « Tools/GardeningServer/scripts/controllers.js ('k') | Tools/GardeningServer/scripts/ui.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698