diff options
Diffstat (limited to 'google_apis/gaia/oauth2_mint_token_flow.cc')
-rw-r--r-- | google_apis/gaia/oauth2_mint_token_flow.cc | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/google_apis/gaia/oauth2_mint_token_flow.cc b/google_apis/gaia/oauth2_mint_token_flow.cc index 169d187..42fc4ef 100644 --- a/google_apis/gaia/oauth2_mint_token_flow.cc +++ b/google_apis/gaia/oauth2_mint_token_flow.cc @@ -89,16 +89,17 @@ OAuth2MintTokenFlow::Parameters::Parameters( OAuth2MintTokenFlow::Parameters::~Parameters() {} -OAuth2MintTokenFlow::OAuth2MintTokenFlow(URLRequestContextGetter* context, - Delegate* delegate, - const Parameters& parameters) - : OAuth2ApiCallFlow(context, - parameters.login_refresh_token, - std::string(), - std::vector<std::string>()), +OAuth2MintTokenFlow::OAuth2MintTokenFlow( + URLRequestContextGetter* context, + Delegate* delegate, + const Parameters& parameters) + : OAuth2ApiCallFlow( + context, parameters.login_refresh_token, + "", std::vector<std::string>()), delegate_(delegate), parameters_(parameters), - ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)) {} + ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)) { +} OAuth2MintTokenFlow::~OAuth2MintTokenFlow() { } |