| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 COMPONENTS_PROXIMITY_AUTH_PROXIMITY_AUTH_PREF_MANAGER_H | 5 #ifndef COMPONENTS_PROXIMITY_AUTH_PROXIMITY_AUTH_PREF_MANAGER_H |
| 6 #define COMPONENTS_PROXIMITY_AUTH_PROXIMITY_AUTH_PREF_MANAGER_H | 6 #define COMPONENTS_PROXIMITY_AUTH_PROXIMITY_AUTH_PREF_MANAGER_H |
| 7 | 7 |
| 8 #include <memory> |
| 8 #include <string> | 9 #include <string> |
| 9 #include <vector> | 10 #include <vector> |
| 10 | 11 |
| 11 #include "base/macros.h" | 12 #include "base/macros.h" |
| 12 #include "base/memory/scoped_ptr.h" | |
| 13 | 13 |
| 14 class PrefRegistrySimple; | 14 class PrefRegistrySimple; |
| 15 class PrefService; | 15 class PrefService; |
| 16 | 16 |
| 17 namespace base { | 17 namespace base { |
| 18 class DictionaryValue; | 18 class DictionaryValue; |
| 19 } // namespace base | 19 } // namespace base |
| 20 | 20 |
| 21 namespace proximity_auth { | 21 namespace proximity_auth { |
| 22 | 22 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 // Contains perferences that outlive the lifetime of this object and across | 65 // Contains perferences that outlive the lifetime of this object and across |
| 66 // process restarts. Not owned and must outlive this instance. | 66 // process restarts. Not owned and must outlive this instance. |
| 67 PrefService* pref_service_; | 67 PrefService* pref_service_; |
| 68 | 68 |
| 69 DISALLOW_COPY_AND_ASSIGN(ProximityAuthPrefManager); | 69 DISALLOW_COPY_AND_ASSIGN(ProximityAuthPrefManager); |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 } // namespace proximity_auth | 72 } // namespace proximity_auth |
| 73 | 73 |
| 74 #endif // COMPONENTS_PROXIMITY_AUTH_PROXIMITY_AUTH_PREF_MANAGER_H | 74 #endif // COMPONENTS_PROXIMITY_AUTH_PROXIMITY_AUTH_PREF_MANAGER_H |
| OLD | NEW |