Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1290)

Unified Diff: Src/GoogleApis.Auth.Windows/OAuth2/GoogleWebAuthorizationBroker.cs

Issue 176220043: Issue 471: Support WP8.1 (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Patch Set: minor Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Src/GoogleApis.Auth.Windows/GoogleApis.Auth.Windows.csproj ('k') | Src/GoogleApis.Auth.Windows/app.config » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Src/GoogleApis.Auth.Windows/OAuth2/GoogleWebAuthorizationBroker.cs
===================================================================
--- a/Src/GoogleApis.Auth.Windows/OAuth2/GoogleWebAuthorizationBroker.cs
b/Src/GoogleApis.Auth.Windows/OAuth2/GoogleWebAuthorizationBroker.cs
@@ -32,7 32,7 @@
{
/// <summary>Asynchronously authorizes the specified user.</summary>
/// <remarks>
- /// It uses <see cref="Google.Apis.Util.Store.StroageDataStore"/> as the flow's data store by default.
/// It uses <see cref="Google.Apis.Util.Store.StorageDataStore"/> as the flow's data store by default.
/// </remarks>
/// <param name="clientSecretsUri">The client secrets URI.</param>
/// <param name="scopes">
@@ -50,7 50,7 @@
/// <summary>Asynchronously authorizes the specified user.</summary>
/// <remarks>
- /// It uses <see cref="Google.Apis.Util.Store.StroageDataStore"/> as the flow's data store by default.
/// It uses <see cref="Google.Apis.Util.Store.StorageDataStore"/> as the flow's data store by default.
/// </remarks>
/// <param name="clientSecrets">The client secrets URI.</param>
/// <param name="scopes">
@@ -66,7 66,7 @@
{
ClientSecrets = clientSecrets,
Scopes = scopes,
- DataStore = new StroageDataStore()
DataStore = new StorageDataStore()
};
var installedApp = new AuthorizationCodeWindowsInstalledApp(new GoogleAuthorizationCodeFlow(initializer));
@@ -86,7 86,7 @@
var installedApp = new AuthorizationCodeWindowsInstalledApp(userCredential.Flow);
// Create an authorization code installed app instance and authorize the user.
UserCredential newUserCredential = await installedApp.AuthorizeAsync(
- userCredential.UderId, taskCancellationToken).ConfigureAwait(false);
userCredential.UserId, taskCancellationToken).ConfigureAwait(false);
userCredential.Token = newUserCredential.Token;
}
« no previous file with comments | « Src/GoogleApis.Auth.Windows/GoogleApis.Auth.Windows.csproj ('k') | Src/GoogleApis.Auth.Windows/app.config » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b