Index: Src/GoogleApis.Auth.WP/OAuth2/AuthorizationCodeWPInstalledApp.cs =================================================================== --- a/Src/GoogleApis.Auth.WP/OAuth2/AuthorizationCodeWPInstalledApp.cs +++ b/Src/GoogleApis.Auth.WP/OAuth2/AuthorizationCodeWPInstalledApp.cs @@ -38,14 +38,25 @@ { private readonly IAuthorizationCodeInstalledApp innerInstallApp; - /// Constructs a new authorization code installed application for WP. - /// A authorization code flow initializer. + /// + /// Constructs a new authorization code for Windows Phone targeting an installed application flow. + /// + /// An authorization code flow initializer. public AuthorizationCodeWPInstalledApp(AuthorizationCodeFlow.Initializer authorizationCodeFlowInitializer) { var flow = new AuthorizationCodeFlow(authorizationCodeFlowInitializer); innerInstallApp = new AuthorizationCodeInstalledApp(flow, new AuthorizationCodeBroker()); } + /// + /// Constructs a new authorization code for Windows Phone targeting an installed application flow. + /// + /// An authorization code flow. + public AuthorizationCodeWPInstalledApp(IAuthorizationCodeFlow flow) + { + innerInstallApp = new AuthorizationCodeInstalledApp(flow, new AuthorizationCodeBroker()); + } + #region IAuthorizationCodeInstalledApp Members public IAuthorizationCodeFlow Flow