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

Unified Diff: chrome/browser/chromeos/login/screens/host_pairing_screen.h

Issue 2700303002: cros: Unify oobe View/Actor naming to just View. (Closed)
Patch Set: Rebase 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/login/screens/host_pairing_screen.h
diff --git a/chrome/browser/chromeos/login/screens/host_pairing_screen.h b/chrome/browser/chromeos/login/screens/host_pairing_screen.h
index 87e786ccdc05fcbe2cb90a4b0be163a6acd2a429..996efcc5a82dfa43f8081b5308ce7b8e833be672 100644
--- a/chrome/browser/chromeos/login/screens/host_pairing_screen.h
+++ b/chrome/browser/chromeos/login/screens/host_pairing_screen.h
@@ -8,7 +8,7 @@
#include "base/macros.h"
#include "chrome/browser/chromeos/login/enrollment/enterprise_enrollment_helper.h"
#include "chrome/browser/chromeos/login/screens/base_screen.h"
-#include "chrome/browser/chromeos/login/screens/host_pairing_screen_actor.h"
+#include "chrome/browser/chromeos/login/screens/host_pairing_screen_view.h"
#include "components/login/screens/screen_context.h"
#include "components/pairing/host_pairing_controller.h"
@@ -17,7 +17,7 @@ namespace chromeos {
class HostPairingScreen
: public BaseScreen,
public pairing_chromeos::HostPairingController::Observer,
- public HostPairingScreenActor::Delegate,
+ public HostPairingScreenView::Delegate,
public EnterpriseEnrollmentHelper::EnrollmentStatusConsumer {
public:
class Delegate {
@@ -39,7 +39,7 @@ class HostPairingScreen
HostPairingScreen(BaseScreenDelegate* base_screen_delegate,
Delegate* delegate,
- HostPairingScreenActor* actor,
+ HostPairingScreenView* view,
pairing_chromeos::HostPairingController* remora_controller);
~HostPairingScreen() override;
@@ -63,7 +63,7 @@ class HostPairingScreen
void EnrollHostRequested(const std::string& auth_token) override;
// Overridden from ControllerPairingView::Delegate:
- void OnActorDestroyed(HostPairingScreenActor* actor) override;
+ void OnViewDestroyed(HostPairingScreenView* view) override;
// Overridden from EnterpriseEnrollmentHelper::EnrollmentStatusConsumer:
void OnAuthError(const GoogleServiceAuthError& error) override;
@@ -79,7 +79,7 @@ class HostPairingScreen
Delegate* delegate_ = nullptr;
- HostPairingScreenActor* actor_ = nullptr;
+ HostPairingScreenView* view_ = nullptr;
// Controller performing pairing. Owned by the wizard controller.
pairing_chromeos::HostPairingController* remora_controller_ = nullptr;
« no previous file with comments | « chrome/browser/chromeos/login/screens/eula_screen.h ('k') | chrome/browser/chromeos/login/screens/host_pairing_screen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698