| Index: chrome/browser/chromeos/arc/auth/arc_background_auth_code_fetcher.h
|
| diff --git a/chrome/browser/chromeos/arc/auth/arc_background_auth_code_fetcher.h b/chrome/browser/chromeos/arc/auth/arc_background_auth_code_fetcher.h
|
| index 04638685899007af440182086bc1b900bfa76507..dbb5d3510f118a0e9605298da9028c38069a8552 100644
|
| --- a/chrome/browser/chromeos/arc/auth/arc_background_auth_code_fetcher.h
|
| +++ b/chrome/browser/chromeos/arc/auth/arc_background_auth_code_fetcher.h
|
| @@ -13,7 +13,7 @@
|
| #include "base/memory/weak_ptr.h"
|
| #include "chrome/browser/chromeos/arc/arc_auth_context.h"
|
| #include "chrome/browser/chromeos/arc/arc_optin_uma.h"
|
| -#include "chrome/browser/chromeos/arc/auth/arc_auth_code_fetcher.h"
|
| +#include "chrome/browser/chromeos/arc/auth/arc_auth_info_fetcher.h"
|
| #include "google_apis/gaia/oauth2_token_service.h"
|
| #include "net/url_request/url_fetcher_delegate.h"
|
|
|
| @@ -28,14 +28,14 @@ namespace arc {
|
|
|
| // The instance is not reusable, so for each Fetch(), the instance must be
|
| // re-created. Deleting the instance cancels inflight operation.
|
| -class ArcBackgroundAuthCodeFetcher : public ArcAuthCodeFetcher,
|
| +class ArcBackgroundAuthCodeFetcher : public ArcAuthInfoFetcher,
|
| public OAuth2TokenService::Consumer,
|
| public net::URLFetcherDelegate {
|
| public:
|
| ArcBackgroundAuthCodeFetcher(Profile* profile, ArcAuthContext* context);
|
| ~ArcBackgroundAuthCodeFetcher() override;
|
|
|
| - // ArcAuthCodeFetcher:
|
| + // ArcAuthInfoFetcher:
|
| void Fetch(const FetchCallback& callback) override;
|
|
|
| private:
|
|
|