| Index: chrome/browser/chromeos/login/screen_observer.h
|
| diff --git a/chrome/browser/chromeos/login/screen_observer.h b/chrome/browser/chromeos/login/screen_observer.h
|
| index 69233c8d2396c21eb66f9a79d4f034f7aa35aa2a..b320fbb03b5eaa9940f8910f54fac2f25c1a33c8 100644
|
| --- a/chrome/browser/chromeos/login/screen_observer.h
|
| +++ b/chrome/browser/chromeos/login/screen_observer.h
|
| @@ -44,14 +44,17 @@ class ScreenObserver {
|
| // Forces current screen showing.
|
| virtual void ShowCurrentScreen() = 0;
|
|
|
| + // Skip update, go straight to enrollment after EULA is accepted.
|
| + virtual void SkipUpdateEnrollAfterEula() = 0;
|
| +
|
| // Notify about new user names and password. It is used to autologin
|
| // just created user without asking the same info once again.
|
| virtual void OnSetUserNamePassword(const std::string& username,
|
| const std::string& password) = 0;
|
|
|
| // Set/get usage statistics reporting checkbox status on EULA screen.
|
| - virtual void set_usage_statistics_reporting(bool val) = 0;
|
| - virtual bool usage_statistics_reporting() const = 0;
|
| + virtual void SetUsageStatisticsReporting(bool val) = 0;
|
| + virtual bool GetUsageStatisticsReporting() const = 0;
|
|
|
| protected:
|
| virtual ~ScreenObserver() {}
|
|
|