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

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

Issue 16019002: Merge the dart:uri library into dart:core and update the Uri class (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Final cleanup Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/oauth2/lib/src/credentials.dart ('k') | pkg/oauth2/lib/src/utils.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';
10 9
11 import 'package:http/http.dart' as http; 10 import 'package:http/http.dart' as http;
12 11
13 import 'credentials.dart'; 12 import 'credentials.dart';
14 import 'authorization_exception.dart'; 13 import 'authorization_exception.dart';
15 14
16 /// The amount of time, in seconds, to add as a "grace period" for credential 15 /// The amount of time, in seconds, to add as a "grace period" for credential
17 /// expiration. This allows credential expiration checks to remain valid for a 16 /// expiration. This allows credential expiration checks to remain valid for a
18 /// reasonable amount of time. 17 /// reasonable amount of time.
19 const _EXPIRATION_GRACE = 10; 18 const _EXPIRATION_GRACE = 10;
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 135
137 void _validate( 136 void _validate(
138 http.Response response, 137 http.Response response,
139 Uri tokenEndpoint, 138 Uri tokenEndpoint,
140 bool condition, 139 bool condition,
141 String message) { 140 String message) {
142 if (condition) return; 141 if (condition) return;
143 throw new FormatException('Invalid OAuth response for "$tokenEndpoint": ' 142 throw new FormatException('Invalid OAuth response for "$tokenEndpoint": '
144 '$message.\n\n${response.body}'); 143 '$message.\n\n${response.body}');
145 } 144 }
OLDNEW
« no previous file with comments | « pkg/oauth2/lib/src/credentials.dart ('k') | pkg/oauth2/lib/src/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698