| 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_H_ | 5 #ifndef CHROME_BROWSER_SIGNIN_EASY_UNLOCK_SERVICE_H_ |
| 6 #define CHROME_BROWSER_SIGNIN_EASY_UNLOCK_SERVICE_H_ | 6 #define CHROME_BROWSER_SIGNIN_EASY_UNLOCK_SERVICE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 namespace user_manager { | 36 namespace user_manager { |
| 37 class User; | 37 class User; |
| 38 } | 38 } |
| 39 | 39 |
| 40 namespace user_prefs { | 40 namespace user_prefs { |
| 41 class PrefRegistrySyncable; | 41 class PrefRegistrySyncable; |
| 42 } | 42 } |
| 43 | 43 |
| 44 namespace proximity_auth { | 44 namespace proximity_auth { |
| 45 class ProximityAuthBleSystem; | |
| 46 class ProximityAuthSystem; | 45 class ProximityAuthSystem; |
| 47 } | 46 } |
| 48 | 47 |
| 49 class EasyUnlockAppManager; | 48 class EasyUnlockAppManager; |
| 50 class EasyUnlockServiceObserver; | 49 class EasyUnlockServiceObserver; |
| 51 class Profile; | 50 class Profile; |
| 52 class PrefRegistrySimple; | 51 class PrefRegistrySimple; |
| 53 | 52 |
| 54 class EasyUnlockService : public KeyedService { | 53 class EasyUnlockService : public KeyedService { |
| 55 public: | 54 public: |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 bool tpm_key_checked_; | 374 bool tpm_key_checked_; |
| 376 | 375 |
| 377 base::ObserverList<EasyUnlockServiceObserver> observers_; | 376 base::ObserverList<EasyUnlockServiceObserver> observers_; |
| 378 | 377 |
| 379 base::WeakPtrFactory<EasyUnlockService> weak_ptr_factory_; | 378 base::WeakPtrFactory<EasyUnlockService> weak_ptr_factory_; |
| 380 | 379 |
| 381 DISALLOW_COPY_AND_ASSIGN(EasyUnlockService); | 380 DISALLOW_COPY_AND_ASSIGN(EasyUnlockService); |
| 382 }; | 381 }; |
| 383 | 382 |
| 384 #endif // CHROME_BROWSER_SIGNIN_EASY_UNLOCK_SERVICE_H_ | 383 #endif // CHROME_BROWSER_SIGNIN_EASY_UNLOCK_SERVICE_H_ |
| OLD | NEW |