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

Unified Diff: utils/pub/oauth2.dart

Issue 11280246: Use pkg/http pervasively in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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 | « utils/pub/io.dart ('k') | utils/tests/pub/pub_lish_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/oauth2.dart
diff --git a/utils/pub/oauth2.dart b/utils/pub/oauth2.dart
index 4960dced1c5b89fedd11fee6457c3a951070e7c5..7cc5c852a81d4c7b4cfc2331d1a45913e28e94c0 100644
--- a/utils/pub/oauth2.dart
+++ b/utils/pub/oauth2.dart
@@ -9,7 +9,6 @@ import 'dart:uri';
// TODO(nweiz): Make this a "package:" URL, or something nicer than this.
import '../../pkg/oauth2/lib/oauth2.dart';
-import 'curl_client.dart';
import 'io.dart';
import 'system_cache.dart';
import 'utils.dart';
@@ -81,7 +80,7 @@ Future<Client> _getClient(SystemCache cache) {
return _loadCredentials(cache).chain((credentials) {
if (credentials == null) return _authorize();
return new Future.immediate(new Client(
- _identifier, _secret, credentials, httpClient: new CurlClient()));
+ _identifier, _secret, credentials, httpClient: curlClient));
}).chain((client) {
return _saveCredentials(cache, client.credentials).transform((_) => client);
});
@@ -142,7 +141,7 @@ Future<Client> _authorize() {
_secret,
_authorizationEndpoint,
tokenEndpoint,
- httpClient: new CurlClient());
+ httpClient: curlClient);
// Spin up a one-shot HTTP server to receive the authorization code from the
// Google OAuth2 server via redirect. This server will close itself as soon as
« no previous file with comments | « utils/pub/io.dart ('k') | utils/tests/pub/pub_lish_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698