| 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_SIGNIN_EASY_UNLOCK_SERVICE_SIGNIN_CHROMEOS_H_ | 5 #ifndef CHROME_BROWSER_SIGNIN_EASY_UNLOCK_SERVICE_SIGNIN_CHROMEOS_H_ |
| 6 #define CHROME_BROWSER_SIGNIN_EASY_UNLOCK_SERVICE_SIGNIN_CHROMEOS_H_ | 6 #define CHROME_BROWSER_SIGNIN_EASY_UNLOCK_SERVICE_SIGNIN_CHROMEOS_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 std::string GetWrappedSecret() const override; | 77 std::string GetWrappedSecret() const override; |
| 78 void RecordEasySignInOutcome(const std::string& user_id, | 78 void RecordEasySignInOutcome(const std::string& user_id, |
| 79 bool success) const override; | 79 bool success) const override; |
| 80 void RecordPasswordLoginEvent(const std::string& user_id) const override; | 80 void RecordPasswordLoginEvent(const std::string& user_id) const override; |
| 81 void StartAutoPairing(const AutoPairingResultCallback& callback) override; | 81 void StartAutoPairing(const AutoPairingResultCallback& callback) override; |
| 82 void SetAutoPairingResult(bool success, const std::string& error) override; | 82 void SetAutoPairingResult(bool success, const std::string& error) override; |
| 83 void InitializeInternal() override; | 83 void InitializeInternal() override; |
| 84 void ShutdownInternal() override; | 84 void ShutdownInternal() override; |
| 85 bool IsAllowedInternal() const override; | 85 bool IsAllowedInternal() const override; |
| 86 void OnWillFinalizeUnlock(bool success) override; | 86 void OnWillFinalizeUnlock(bool success) override; |
| 87 void OnSuspendDone() override; | 87 void OnSuspendDoneInternal() override; |
| 88 | 88 |
| 89 // proximity_auth::ScreenlockBridge::Observer implementation: | 89 // proximity_auth::ScreenlockBridge::Observer implementation: |
| 90 void OnScreenDidLock(proximity_auth::ScreenlockBridge::LockHandler::ScreenType | 90 void OnScreenDidLock(proximity_auth::ScreenlockBridge::LockHandler::ScreenType |
| 91 screen_type) override; | 91 screen_type) override; |
| 92 void OnScreenDidUnlock( | 92 void OnScreenDidUnlock( |
| 93 proximity_auth::ScreenlockBridge::LockHandler::ScreenType screen_type) | 93 proximity_auth::ScreenlockBridge::LockHandler::ScreenType screen_type) |
| 94 override; | 94 override; |
| 95 void OnFocusedUserChanged(const std::string& user_id) override; | 95 void OnFocusedUserChanged(const std::string& user_id) override; |
| 96 | 96 |
| 97 // chromeos::LoginState::Observer implementation: | 97 // chromeos::LoginState::Observer implementation: |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 | 129 |
| 130 // The timestamp for the most recent time when a user pod was focused. | 130 // The timestamp for the most recent time when a user pod was focused. |
| 131 base::TimeTicks user_pod_last_focused_timestamp_; | 131 base::TimeTicks user_pod_last_focused_timestamp_; |
| 132 | 132 |
| 133 base::WeakPtrFactory<EasyUnlockServiceSignin> weak_ptr_factory_; | 133 base::WeakPtrFactory<EasyUnlockServiceSignin> weak_ptr_factory_; |
| 134 | 134 |
| 135 DISALLOW_COPY_AND_ASSIGN(EasyUnlockServiceSignin); | 135 DISALLOW_COPY_AND_ASSIGN(EasyUnlockServiceSignin); |
| 136 }; | 136 }; |
| 137 | 137 |
| 138 #endif // CHROME_BROWSER_SIGNIN_EASY_UNLOCK_SERVICE_SIGNIN_CHROMEOS_H_ | 138 #endif // CHROME_BROWSER_SIGNIN_EASY_UNLOCK_SERVICE_SIGNIN_CHROMEOS_H_ |
| OLD | NEW |