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

Unified Diff: tools/apps/update_homebrew/bin/update_homebrew.dart

Issue 652833005: Add additional check to vmservice/websocket_client test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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 | « tests/standalone/vmservice/websocket_client_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/apps/update_homebrew/bin/update_homebrew.dart
diff --git a/tools/apps/update_homebrew/bin/update_homebrew.dart b/tools/apps/update_homebrew/bin/update_homebrew.dart
index 91085c4818c5b2c9b6bdce3bd0ed9da6213f7eef..28b82cb486b07156351a18b95f9cfa4f4b849894 100644
--- a/tools/apps/update_homebrew/bin/update_homebrew.dart
+++ b/tools/apps/update_homebrew/bin/update_homebrew.dart
@@ -46,7 +46,7 @@ Future<String> getVersion(String channel, int revision) {
.whenComplete(client.close);
}
-Future<Map> setCurrentRevisions(Map revisions) {
+Future setCurrentRevisions(Map revisions) {
return new File('$repository/dart.rb')
.readAsLines()
.then((lines) {
@@ -58,7 +58,7 @@ Future<Map> setCurrentRevisions(Map revisions) {
});
}
-Future<Map> setHashes(Map revisions, Map hashes) {
+Future setHashes(Map revisions, Map hashes) {
List waitOn = [];
for (var channel in CHANNELS) {
hashes[channel] = {};
« no previous file with comments | « tests/standalone/vmservice/websocket_client_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698