| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_CHROMEOS_LOGIN_SCREENS_CORE_OOBE_ACTOR_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_CORE_OOBE_ACTOR_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_CORE_OOBE_ACTOR_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_CORE_OOBE_ACTOR_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "chrome/browser/chromeos/login/help_app_launcher.h" | 10 #include "chrome/browser/chromeos/login/help_app_launcher.h" |
| 11 | 11 |
| 12 namespace base { | 12 namespace base { |
| 13 class DictionaryValue; | 13 class DictionaryValue; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace gfx { | |
| 17 class Rect; | |
| 18 } | |
| 19 | |
| 20 namespace chromeos { | 16 namespace chromeos { |
| 21 | 17 |
| 22 class CoreOobeActor { | 18 class CoreOobeActor { |
| 23 public: | 19 public: |
| 24 virtual ~CoreOobeActor() {} | 20 virtual ~CoreOobeActor() {} |
| 25 | 21 |
| 26 virtual void ShowSignInError(int login_attempts, | 22 virtual void ShowSignInError(int login_attempts, |
| 27 const std::string& error_text, | 23 const std::string& error_text, |
| 28 const std::string& help_link_text, | 24 const std::string& help_link_text, |
| 29 HelpAppLauncher::HelpTopic help_topic_id) = 0; | 25 HelpAppLauncher::HelpTopic help_topic_id) = 0; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 45 virtual void ShowDeviceResetScreen() = 0; | 41 virtual void ShowDeviceResetScreen() = 0; |
| 46 virtual void ShowEnableDebuggingScreen() = 0; | 42 virtual void ShowEnableDebuggingScreen() = 0; |
| 47 virtual void InitDemoModeDetection() = 0; | 43 virtual void InitDemoModeDetection() = 0; |
| 48 virtual void StopDemoModeDetection() = 0; | 44 virtual void StopDemoModeDetection() = 0; |
| 49 virtual void UpdateKeyboardState() = 0; | 45 virtual void UpdateKeyboardState() = 0; |
| 50 }; | 46 }; |
| 51 | 47 |
| 52 } // namespace chromeos | 48 } // namespace chromeos |
| 53 | 49 |
| 54 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_CORE_OOBE_ACTOR_H_ | 50 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_CORE_OOBE_ACTOR_H_ |
| OLD | NEW |