| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_EULA_SCREEN_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_EULA_SCREEN_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_EULA_SCREEN_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_EULA_SCREEN_HANDLER_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "chrome/browser/chromeos/login/screens/eula_screen_actor.h" | 10 #include "chrome/browser/chromeos/login/screens/eula_screen_actor.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 // WebUI implementation of EulaScreenActor. It is used to interact | 24 // WebUI implementation of EulaScreenActor. It is used to interact |
| 25 // with the eula part of the JS page. | 25 // with the eula part of the JS page. |
| 26 class EulaScreenHandler : public EulaScreenActor, | 26 class EulaScreenHandler : public EulaScreenActor, |
| 27 public BaseScreenHandler, | 27 public BaseScreenHandler, |
| 28 public TpmPasswordFetcherDelegate { | 28 public TpmPasswordFetcherDelegate { |
| 29 public: | 29 public: |
| 30 explicit EulaScreenHandler(CoreOobeActor* core_oobe_actor); | 30 explicit EulaScreenHandler(CoreOobeActor* core_oobe_actor); |
| 31 virtual ~EulaScreenHandler(); | 31 virtual ~EulaScreenHandler(); |
| 32 | 32 |
| 33 // EulaScreenActor implementation: | 33 // EulaScreenActor implementation: |
| 34 virtual void PrepareToShow() OVERRIDE; | 34 virtual void PrepareToShow() override; |
| 35 virtual void Show() OVERRIDE; | 35 virtual void Show() override; |
| 36 virtual void Hide() OVERRIDE; | 36 virtual void Hide() override; |
| 37 virtual void SetDelegate(Delegate* delegate) OVERRIDE; | 37 virtual void SetDelegate(Delegate* delegate) override; |
| 38 virtual void OnPasswordFetched(const std::string& tpm_password) OVERRIDE; | 38 virtual void OnPasswordFetched(const std::string& tpm_password) override; |
| 39 | 39 |
| 40 // BaseScreenHandler implementation: | 40 // BaseScreenHandler implementation: |
| 41 virtual void DeclareLocalizedValues(LocalizedValuesBuilder* builder) OVERRIDE; | 41 virtual void DeclareLocalizedValues(LocalizedValuesBuilder* builder) override; |
| 42 virtual void GetAdditionalParameters(base::DictionaryValue* dict) OVERRIDE; | 42 virtual void GetAdditionalParameters(base::DictionaryValue* dict) override; |
| 43 virtual void Initialize() OVERRIDE; | 43 virtual void Initialize() override; |
| 44 | 44 |
| 45 // WebUIMessageHandler implementation: | 45 // WebUIMessageHandler implementation: |
| 46 virtual void RegisterMessages() OVERRIDE; | 46 virtual void RegisterMessages() override; |
| 47 | 47 |
| 48 private: | 48 private: |
| 49 // JS messages handlers. | 49 // JS messages handlers. |
| 50 void HandleOnExit(bool accepted, bool usager_stats_enabled); | 50 void HandleOnExit(bool accepted, bool usager_stats_enabled); |
| 51 void HandleOnLearnMore(); | 51 void HandleOnLearnMore(); |
| 52 void HandleOnChromeCredits(); | 52 void HandleOnChromeCredits(); |
| 53 void HandleOnChromeOSCredits(); | 53 void HandleOnChromeOSCredits(); |
| 54 void HandleOnInstallationSettingsPopupOpened(); | 54 void HandleOnInstallationSettingsPopupOpened(); |
| 55 | 55 |
| 56 EulaScreenActor::Delegate* delegate_; | 56 EulaScreenActor::Delegate* delegate_; |
| 57 CoreOobeActor* core_oobe_actor_; | 57 CoreOobeActor* core_oobe_actor_; |
| 58 | 58 |
| 59 // Help application used for help dialogs. | 59 // Help application used for help dialogs. |
| 60 scoped_refptr<HelpAppLauncher> help_app_; | 60 scoped_refptr<HelpAppLauncher> help_app_; |
| 61 | 61 |
| 62 // Keeps whether screen should be shown right after initialization. | 62 // Keeps whether screen should be shown right after initialization. |
| 63 bool show_on_init_; | 63 bool show_on_init_; |
| 64 | 64 |
| 65 DISALLOW_COPY_AND_ASSIGN(EulaScreenHandler); | 65 DISALLOW_COPY_AND_ASSIGN(EulaScreenHandler); |
| 66 }; | 66 }; |
| 67 | 67 |
| 68 } // namespace chromeos | 68 } // namespace chromeos |
| 69 | 69 |
| 70 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_EULA_SCREEN_HANDLER_H_ | 70 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_EULA_SCREEN_HANDLER_H_ |
| OLD | NEW |