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

Side by Side Diff: pkg/oauth2/lib/src/handle_access_token_response.dart

Issue 12052038: Rename new Uri.fromString to Uri.parse. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload because of Error. Created 7 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/oauth2/lib/src/credentials.dart ('k') | pkg/oauth2/test/authorization_code_grant_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library handle_access_token_response; 5 library handle_access_token_response;
6 6
7 import 'dart:io'; 7 import 'dart:io';
8 import 'dart:json' as JSON; 8 import 'dart:json' as JSON;
9 import 'dart:uri'; 9 import 'dart:uri';
10 10
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 '"${parameters["error"]}"'); 123 '"${parameters["error"]}"');
124 124
125 for (var name in ['error_description', 'error_uri']) { 125 for (var name in ['error_description', 'error_uri']) {
126 var value = parameters[name]; 126 var value = parameters[name];
127 validate(value == null || value is String, 127 validate(value == null || value is String,
128 'parameter "$name" was not a string, was "$value"'); 128 'parameter "$name" was not a string, was "$value"');
129 } 129 }
130 130
131 var description = parameters['error_description']; 131 var description = parameters['error_description'];
132 var uriString = parameters['error_uri']; 132 var uriString = parameters['error_uri'];
133 var uri = uriString == null ? null : new Uri.fromString(uriString); 133 var uri = uriString == null ? null : Uri.parse(uriString);
134 throw new AuthorizationException(parameters['error'], description, uri); 134 throw new AuthorizationException(parameters['error'], description, uri);
135 } 135 }
136 136
137 void _validate( 137 void _validate(
138 http.Response response, 138 http.Response response,
139 Uri tokenEndpoint, 139 Uri tokenEndpoint,
140 bool condition, 140 bool condition,
141 String message) { 141 String message) {
142 if (condition) return; 142 if (condition) return;
143 throw new FormatException('Invalid OAuth response for "$tokenEndpoint": ' 143 throw new FormatException('Invalid OAuth response for "$tokenEndpoint": '
144 '$message.\n\n${response.body}'); 144 '$message.\n\n${response.body}');
145 } 145 }
OLDNEW
« no previous file with comments | « pkg/oauth2/lib/src/credentials.dart ('k') | pkg/oauth2/test/authorization_code_grant_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698