Index: chrome/browser/chromeos/login/enrollment/enrollment_screen_actor.h |
diff --git a/chrome/browser/chromeos/login/enrollment/enrollment_screen_actor.h b/chrome/browser/chromeos/login/enrollment/enrollment_screen_actor.h |
index b21804fb0c8676974ad08d132e41f2e4d05c101a..377b0384a31636c92a2d34cefc70ce2705408059 100644 |
--- a/chrome/browser/chromeos/login/enrollment/enrollment_screen_actor.h |
+++ b/chrome/browser/chromeos/login/enrollment/enrollment_screen_actor.h |
@@ -33,6 +33,8 @@ class EnrollmentScreenActor { |
virtual void OnRetry() = 0; |
virtual void OnCancel() = 0; |
virtual void OnConfirmationClosed() = 0; |
+ virtual void OnDeviceNaming(const std::string& asset_id, |
Mattias Nissler (ping if slow)
2015/04/10 12:22:29
Let's call this OnDeviceAttributesProvided, so we'
Polina Bondarenko
2015/04/14 14:15:47
Done.
|
+ const std::string& location) = 0; |
}; |
virtual ~EnrollmentScreenActor() {} |
@@ -53,6 +55,9 @@ class EnrollmentScreenActor { |
// Shows the signin screen. |
virtual void ShowSigninScreen() = 0; |
+ // Shows the device naming screen |
+ virtual void ShowDeviceNamingScreen() = 0; |
Mattias Nissler (ping if slow)
2015/04/10 12:22:29
Maybe ShowAttributePromptScreen() would be a more
Polina Bondarenko
2015/04/14 14:15:47
Done.
|
+ |
// Shows the spinner screen for enrollment. |
virtual void ShowEnrollmentSpinnerScreen() = 0; |