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

Unified Diff: Tools/GardeningServer/scripts/ui.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/model.js ('k') | Tools/GardeningServer/scripts/ui/actions.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/scripts/ui.js
diff --git a/Tools/GardeningServer/scripts/ui.js b/Tools/GardeningServer/scripts/ui.js
index a6203cf9e46bb89c19a7d40be5002c2555c2ed88..de7e29f741d6b7fea44b8d244b2af3ab0dff97f8 100644
--- a/Tools/GardeningServer/scripts/ui.js
+++ b/Tools/GardeningServer/scripts/ui.js
@@ -410,11 +410,12 @@ ui.revisionDetails = base.extends('span', {
theSpan.appendChild(document.createTextNode(', trunk is at '));
theSpan.appendChild(ui.createLinkNode(trac.changesetURL(totRevision), totRevision));
- Promise.all([checkout.lastBlinkRollRevision(), rollbot.fetchCurrentRoll()]).then(function(results) {
- theSpan.lastRolledRevision = results[0];
- theSpan.roll = results[1];
- theSpan.updateUI(totRevision);
- });
+ // We want this feature, but need to fetch the lastBlinkRollRevision via the interwebs.
+ // Promise.all([checkout.lastBlinkRollRevision(), rollbot.fetchCurrentRoll()]).then(function(results) {
+ // theSpan.lastRolledRevision = results[0];
+ // theSpan.roll = results[1];
+ // theSpan.updateUI(totRevision);
+ // });
}
});
« no previous file with comments | « Tools/GardeningServer/scripts/model.js ('k') | Tools/GardeningServer/scripts/ui/actions.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698