OLD | NEW |
---|---|
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_MANAGED_LOCALLY_MANAGED_USER_CREATION_SCRE EN_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_SCRE EN_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_SCRE EN_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_SCRE EN_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
69 const std::string& manager_password) OVERRIDE; | 69 const std::string& manager_password) OVERRIDE; |
70 virtual void AbortFlow() OVERRIDE; | 70 virtual void AbortFlow() OVERRIDE; |
71 virtual void FinishFlow() OVERRIDE; | 71 virtual void FinishFlow() OVERRIDE; |
72 virtual void SelectPicture() OVERRIDE; | 72 virtual void SelectPicture() OVERRIDE; |
73 | 73 |
74 // LocallyManagedUserController::StatusConsumer overrides. | 74 // LocallyManagedUserController::StatusConsumer overrides. |
75 virtual void OnCreationError(LocallyManagedUserController::ErrorCode code, | 75 virtual void OnCreationError(LocallyManagedUserController::ErrorCode code, |
76 bool recoverable) OVERRIDE; | 76 bool recoverable) OVERRIDE; |
77 virtual void OnCreationSuccess() OVERRIDE; | 77 virtual void OnCreationSuccess() OVERRIDE; |
78 | 78 |
79 // ConnectivityStateHelperObserver implementation: | 79 // ConnectivityStateHelperObserver implementation: |
ygorshenin1
2013/05/06 09:14:39
Wrong comment, could you please fix it?
gauravsh
2013/05/07 23:38:10
Done.
| |
80 virtual void OnPortalDetectionCompleted( | 80 virtual void OnPortalDetectionCompleted( |
81 const Network* network, | 81 const NetworkState* network, |
ygorshenin1
2013/05/06 09:14:39
Forward declaration for NetworkState is needed.
gauravsh
2013/05/07 23:38:10
Done.
| |
82 const NetworkPortalDetector::CaptivePortalState& state) OVERRIDE; | 82 const NetworkPortalDetector::CaptivePortalState& state) OVERRIDE; |
83 private: | 83 private: |
84 LocallyManagedUserCreationScreenHandler* actor_; | 84 LocallyManagedUserCreationScreenHandler* actor_; |
85 | 85 |
86 scoped_ptr<LocallyManagedUserController> controller_; | 86 scoped_ptr<LocallyManagedUserController> controller_; |
87 | 87 |
88 bool on_error_screen_; | 88 bool on_error_screen_; |
89 bool on_image_screen_; | 89 bool on_image_screen_; |
90 | 90 |
91 DISALLOW_COPY_AND_ASSIGN(LocallyManagedUserCreationScreen); | 91 DISALLOW_COPY_AND_ASSIGN(LocallyManagedUserCreationScreen); |
92 }; | 92 }; |
93 | 93 |
94 } // namespace chromeos | 94 } // namespace chromeos |
95 | 95 |
96 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_S CREEN_H_ | 96 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_S CREEN_H_ |
97 | 97 |
OLD | NEW |