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

Unified Diff: chrome/browser/chromeos/arc/auth/arc_robot_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_robot_auth_code_fetcher.h
diff --git a/chrome/browser/chromeos/arc/auth/arc_robot_auth_code_fetcher.h b/chrome/browser/chromeos/arc/auth/arc_robot_auth_code_fetcher.h
index fdf02d76720082678d0b6d47b84412a368a5d530..c7ee265cd7440e9445a76338f0eaf1ac9c2fd772 100644
--- a/chrome/browser/chromeos/arc/auth/arc_robot_auth_code_fetcher.h
+++ b/chrome/browser/chromeos/arc/auth/arc_robot_auth_code_fetcher.h
@@ -10,7 +10,7 @@
#include "base/callback.h"
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
-#include "chrome/browser/chromeos/arc/auth/arc_auth_code_fetcher.h"
+#include "chrome/browser/chromeos/arc/auth/arc_auth_info_fetcher.h"
#include "components/policy/core/common/cloud/cloud_policy_constants.h"
namespace enterprise_management {
@@ -25,12 +25,12 @@ namespace arc {
// This class is responsible to fetch auth code for robot account. Robot auth
// code is used for creation an account on Android side in ARC kiosk mode.
-class ArcRobotAuthCodeFetcher : public ArcAuthCodeFetcher {
+class ArcRobotAuthCodeFetcher : public ArcAuthInfoFetcher {
public:
ArcRobotAuthCodeFetcher();
~ArcRobotAuthCodeFetcher() override;
- // ArcAuthCodeFetcher:
+ // ArcAuthInfoFetcher:
void Fetch(const FetchCallback& callback) override;
private:

Powered by Google App Engine
This is Rietveld 408576698