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 COMPONENTS_SYNC_DRIVER_LOCAL_DEVICE_INFO_PROVIDER_H_ | 5 #ifndef COMPONENTS_SYNC_DRIVER_LOCAL_DEVICE_INFO_PROVIDER_H_ |
6 #define COMPONENTS_SYNC_DRIVER_LOCAL_DEVICE_INFO_PROVIDER_H_ | 6 #define COMPONENTS_SYNC_DRIVER_LOCAL_DEVICE_INFO_PROVIDER_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 virtual std::unique_ptr<Subscription> RegisterOnInitializedCallback( | 55 virtual std::unique_ptr<Subscription> RegisterOnInitializedCallback( |
56 const base::Closure& callback) = 0; | 56 const base::Closure& callback) = 0; |
57 | 57 |
58 // Clears all cached data, returning to an uninitialized state. | 58 // Clears all cached data, returning to an uninitialized state. |
59 virtual void Clear() = 0; | 59 virtual void Clear() = 0; |
60 }; | 60 }; |
61 | 61 |
62 } // namespace sync_driver | 62 } // namespace sync_driver |
63 | 63 |
64 #endif // COMPONENTS_SYNC_DRIVER_LOCAL_DEVICE_INFO_PROVIDER_H_ | 64 #endif // COMPONENTS_SYNC_DRIVER_LOCAL_DEVICE_INFO_PROVIDER_H_ |
OLD | NEW |