| Index: google_apis/gaia/oauth2_mint_token_flow.cc
|
| diff --git a/google_apis/gaia/oauth2_mint_token_flow.cc b/google_apis/gaia/oauth2_mint_token_flow.cc
|
| index 42fc4ef09844357414df9f1e64bd5e5ea59dbcbb..169d1871f9a1d70f13cffc1c5da8bd0b7f4a1976 100644
|
| --- a/google_apis/gaia/oauth2_mint_token_flow.cc
|
| +++ b/google_apis/gaia/oauth2_mint_token_flow.cc
|
| @@ -89,17 +89,16 @@ OAuth2MintTokenFlow::Parameters::Parameters(
|
|
|
| OAuth2MintTokenFlow::Parameters::~Parameters() {}
|
|
|
| -OAuth2MintTokenFlow::OAuth2MintTokenFlow(
|
| - URLRequestContextGetter* context,
|
| - Delegate* delegate,
|
| - const Parameters& parameters)
|
| - : OAuth2ApiCallFlow(
|
| - context, parameters.login_refresh_token,
|
| - "", std::vector<std::string>()),
|
| +OAuth2MintTokenFlow::OAuth2MintTokenFlow(URLRequestContextGetter* context,
|
| + Delegate* delegate,
|
| + const Parameters& parameters)
|
| + : OAuth2ApiCallFlow(context,
|
| + parameters.login_refresh_token,
|
| + std::string(),
|
| + 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() { }
|
|
|
|
|