Index: chrome/browser/chromeos/login/enrollment/enrollment_screen.h |
diff --git a/chrome/browser/chromeos/login/enrollment/enrollment_screen.h b/chrome/browser/chromeos/login/enrollment/enrollment_screen.h |
index 6e547f6b7bb84fbcd5b63f5555fe39adf2948875..d5059b470defd5a24b0def7538d58840d04b6b7e 100644 |
--- a/chrome/browser/chromeos/login/enrollment/enrollment_screen.h |
+++ b/chrome/browser/chromeos/login/enrollment/enrollment_screen.h |
@@ -14,7 +14,7 @@ |
#include "base/gtest_prod_util.h" |
#include "base/macros.h" |
#include "base/memory/weak_ptr.h" |
-#include "chrome/browser/chromeos/login/enrollment/enrollment_screen_actor.h" |
+#include "chrome/browser/chromeos/login/enrollment/enrollment_screen_view.h" |
#include "chrome/browser/chromeos/login/enrollment/enterprise_enrollment_helper.h" |
#include "chrome/browser/chromeos/login/screens/base_screen.h" |
#include "chrome/browser/chromeos/policy/active_directory_join_delegate.h" |
@@ -41,11 +41,11 @@ class ScreenManager; |
class EnrollmentScreen |
: public BaseScreen, |
public EnterpriseEnrollmentHelper::EnrollmentStatusConsumer, |
- public EnrollmentScreenActor::Controller, |
+ public EnrollmentScreenView::Controller, |
public ActiveDirectoryJoinDelegate { |
public: |
EnrollmentScreen(BaseScreenDelegate* base_screen_delegate, |
- EnrollmentScreenActor* actor); |
+ EnrollmentScreenView* actor); |
~EnrollmentScreen() override; |
static EnrollmentScreen* Get(ScreenManager* manager); |
@@ -83,9 +83,7 @@ class EnrollmentScreen |
void JoinDomain(OnDomainJoinedCallback on_joined_callback) override; |
// Used for testing. |
- EnrollmentScreenActor* GetActor() { |
- return actor_; |
- } |
+ EnrollmentScreenView* GetActor() { return actor_; } |
private: |
friend class EnrollmentScreenUnitTest; |
@@ -166,7 +164,7 @@ class EnrollmentScreen |
pairing_chromeos::ControllerPairingController* shark_controller_ = nullptr; |
- EnrollmentScreenActor* actor_; |
+ EnrollmentScreenView* actor_; |
policy::EnrollmentConfig config_; |
policy::EnrollmentConfig enrollment_config_; |
Auth current_auth_ = AUTH_OAUTH; |