Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(631)

Unified Diff: chrome/browser/chromeos/arc/auth/arc_background_auth_code_fetcher.h

Issue 2655873002: Get enrollment token from DMServer when an Active Directory user uses ARC (Closed)
Patch Set: Fix Luis's comments Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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:

Powered by Google App Engine
This is Rietveld 408576698