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 <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 void StartUserAdding(const base::Closure& completion_callback) override; | 78 void StartUserAdding(const base::Closure& completion_callback) override; |
79 void CancelUserAdding() override; | 79 void CancelUserAdding() override; |
80 void StartSignInScreen(const LoginScreenContext& context) override; | 80 void StartSignInScreen(const LoginScreenContext& context) override; |
81 void OnPreferencesChanged() override; | 81 void OnPreferencesChanged() override; |
82 void PrewarmAuthentication() override; | 82 void PrewarmAuthentication() override; |
83 void StartAppLaunch( | 83 void StartAppLaunch( |
84 const std::string& app_id, | 84 const std::string& app_id, |
85 bool diagnostic_mode, | 85 bool diagnostic_mode, |
86 bool auto_launch) override; | 86 bool auto_launch) override; |
87 void StartDemoAppLaunch() override; | 87 void StartDemoAppLaunch() override; |
88 void StartArcKiosk(const AccountId& account_id) override; | 88 void StartArcKiosk(const AccountId& account_id, bool is_auto_launch) override; |
89 | 89 |
90 // Creates WizardController instance. | 90 // Creates WizardController instance. |
91 WizardController* CreateWizardController(); | 91 WizardController* CreateWizardController(); |
92 | 92 |
93 // Called when the first browser window is created, but before it's shown. | 93 // Called when the first browser window is created, but before it's shown. |
94 void OnBrowserCreated(); | 94 void OnBrowserCreated(); |
95 | 95 |
96 const gfx::Rect& wallpaper_bounds() const { return wallpaper_bounds_; } | 96 const gfx::Rect& wallpaper_bounds() const { return wallpaper_bounds_; } |
97 | 97 |
98 // Trace id for ShowLoginWebUI event (since there exists at most one login | 98 // Trace id for ShowLoginWebUI event (since there exists at most one login |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 | 325 |
326 base::WeakPtrFactory<LoginDisplayHostImpl> pointer_factory_; | 326 base::WeakPtrFactory<LoginDisplayHostImpl> pointer_factory_; |
327 base::WeakPtrFactory<LoginDisplayHostImpl> animation_weak_ptr_factory_; | 327 base::WeakPtrFactory<LoginDisplayHostImpl> animation_weak_ptr_factory_; |
328 | 328 |
329 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); | 329 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); |
330 }; | 330 }; |
331 | 331 |
332 } // namespace chromeos | 332 } // namespace chromeos |
333 | 333 |
334 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ | 334 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ |
OLD | NEW |