OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_UI_LOGIN_DISPLAY_HOST_IMPL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 void OpenProxySettings() override; | 76 void OpenProxySettings() override; |
77 void SetStatusAreaVisible(bool visible) override; | 77 void SetStatusAreaVisible(bool visible) override; |
78 AutoEnrollmentController* GetAutoEnrollmentController() override; | 78 AutoEnrollmentController* GetAutoEnrollmentController() override; |
79 void StartWizard(const std::string& first_screen_name) override; | 79 void StartWizard(const std::string& first_screen_name) override; |
80 WizardController* GetWizardController() override; | 80 WizardController* GetWizardController() override; |
81 AppLaunchController* GetAppLaunchController() override; | 81 AppLaunchController* GetAppLaunchController() override; |
82 void StartUserAdding(const base::Closure& completion_callback) override; | 82 void StartUserAdding(const base::Closure& completion_callback) override; |
83 void StartSignInScreen(const LoginScreenContext& context) override; | 83 void StartSignInScreen(const LoginScreenContext& context) override; |
84 void OnPreferencesChanged() override; | 84 void OnPreferencesChanged() override; |
85 void PrewarmAuthentication() override; | 85 void PrewarmAuthentication() override; |
86 void StartAppLaunch(const std::string& app_id, bool diagnostic_mode) override; | 86 void StartAppLaunch( |
| 87 const std::string& app_id, |
| 88 bool diagnostic_mode, |
| 89 bool auto_launch) override; |
87 void StartDemoAppLaunch() override; | 90 void StartDemoAppLaunch() override; |
88 | 91 |
89 // Creates WizardController instance. | 92 // Creates WizardController instance. |
90 WizardController* CreateWizardController(); | 93 WizardController* CreateWizardController(); |
91 | 94 |
92 // Called when the first browser window is created, but before it's shown. | 95 // Called when the first browser window is created, but before it's shown. |
93 void OnBrowserCreated(); | 96 void OnBrowserCreated(); |
94 | 97 |
95 // Returns instance of the OOBE WebUI. | 98 // Returns instance of the OOBE WebUI. |
96 OobeUI* GetOobeUI() const; | 99 OobeUI* GetOobeUI() const; |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 | 310 |
308 base::WeakPtrFactory<LoginDisplayHostImpl> pointer_factory_; | 311 base::WeakPtrFactory<LoginDisplayHostImpl> pointer_factory_; |
309 base::WeakPtrFactory<LoginDisplayHostImpl> animation_weak_ptr_factory_; | 312 base::WeakPtrFactory<LoginDisplayHostImpl> animation_weak_ptr_factory_; |
310 | 313 |
311 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); | 314 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); |
312 }; | 315 }; |
313 | 316 |
314 } // namespace chromeos | 317 } // namespace chromeos |
315 | 318 |
316 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ | 319 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ |
OLD | NEW |