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( |
bartfab (slow)
2015/02/06 12:07:39
Nit: The style guide says:
"For function declarat
Andrew T Wilson (Slow)
2015/02/06 13:24:21
Done.
Andrew T Wilson (Slow)
2015/02/06 13:24:21
Done.
| |
87 const std::string& app_id, bool diagnostic_mode, | |
88 bool auto_launch) override; | |
87 void StartDemoAppLaunch() override; | 89 void StartDemoAppLaunch() override; |
88 | 90 |
89 // Creates WizardController instance. | 91 // Creates WizardController instance. |
90 WizardController* CreateWizardController(); | 92 WizardController* CreateWizardController(); |
91 | 93 |
92 // Called when the first browser window is created, but before it's shown. | 94 // Called when the first browser window is created, but before it's shown. |
93 void OnBrowserCreated(); | 95 void OnBrowserCreated(); |
94 | 96 |
95 // Returns instance of the OOBE WebUI. | 97 // Returns instance of the OOBE WebUI. |
96 OobeUI* GetOobeUI() const; | 98 OobeUI* GetOobeUI() const; |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
307 | 309 |
308 base::WeakPtrFactory<LoginDisplayHostImpl> pointer_factory_; | 310 base::WeakPtrFactory<LoginDisplayHostImpl> pointer_factory_; |
309 base::WeakPtrFactory<LoginDisplayHostImpl> animation_weak_ptr_factory_; | 311 base::WeakPtrFactory<LoginDisplayHostImpl> animation_weak_ptr_factory_; |
310 | 312 |
311 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); | 313 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); |
312 }; | 314 }; |
313 | 315 |
314 } // namespace chromeos | 316 } // namespace chromeos |
315 | 317 |
316 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ | 318 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ |
OLD | NEW |