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_IMPL_H_ | 5 #ifndef COMPONENTS_SYNC_DRIVER_LOCAL_DEVICE_INFO_PROVIDER_IMPL_H_ |
6 #define COMPONENTS_SYNC_DRIVER_LOCAL_DEVICE_INFO_PROVIDER_IMPL_H_ | 6 #define COMPONENTS_SYNC_DRIVER_LOCAL_DEVICE_INFO_PROVIDER_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
12 #include "base/threading/non_thread_safe.h" | 12 #include "base/threading/non_thread_safe.h" |
13 #include "components/sync_driver/device_info.h" | 13 #include "components/sync/driver/device_info.h" |
14 #include "components/sync_driver/local_device_info_provider.h" | 14 #include "components/sync/driver/local_device_info_provider.h" |
15 #include "components/version_info/version_info.h" | 15 #include "components/version_info/version_info.h" |
16 | 16 |
17 namespace browser_sync { | 17 namespace browser_sync { |
18 | 18 |
19 class LocalDeviceInfoProviderImpl | 19 class LocalDeviceInfoProviderImpl : public sync_driver::LocalDeviceInfoProvider, |
20 : public sync_driver::LocalDeviceInfoProvider, | 20 public base::NonThreadSafe { |
21 public base::NonThreadSafe { | |
22 public: | 21 public: |
23 LocalDeviceInfoProviderImpl(version_info::Channel channel, | 22 LocalDeviceInfoProviderImpl(version_info::Channel channel, |
24 const std::string& version, | 23 const std::string& version, |
25 bool is_tablet); | 24 bool is_tablet); |
26 ~LocalDeviceInfoProviderImpl() override; | 25 ~LocalDeviceInfoProviderImpl() override; |
27 | 26 |
28 // LocalDeviceInfoProvider implementation. | 27 // LocalDeviceInfoProvider implementation. |
29 const sync_driver::DeviceInfo* GetLocalDeviceInfo() const override; | 28 const sync_driver::DeviceInfo* GetLocalDeviceInfo() const override; |
30 std::string GetSyncUserAgent() const override; | 29 std::string GetSyncUserAgent() const override; |
31 std::string GetLocalSyncCacheGUID() const override; | 30 std::string GetLocalSyncCacheGUID() const override; |
(...skipping 24 matching lines...) Expand all Loading... |
56 std::unique_ptr<sync_driver::DeviceInfo> local_device_info_; | 55 std::unique_ptr<sync_driver::DeviceInfo> local_device_info_; |
57 base::CallbackList<void(void)> callback_list_; | 56 base::CallbackList<void(void)> callback_list_; |
58 base::WeakPtrFactory<LocalDeviceInfoProviderImpl> weak_factory_; | 57 base::WeakPtrFactory<LocalDeviceInfoProviderImpl> weak_factory_; |
59 | 58 |
60 DISALLOW_COPY_AND_ASSIGN(LocalDeviceInfoProviderImpl); | 59 DISALLOW_COPY_AND_ASSIGN(LocalDeviceInfoProviderImpl); |
61 }; | 60 }; |
62 | 61 |
63 } // namespace browser_sync | 62 } // namespace browser_sync |
64 | 63 |
65 #endif // COMPONENTS_SYNC_DRIVER_LOCAL_DEVICE_INFO_PROVIDER_IMPL_H_ | 64 #endif // COMPONENTS_SYNC_DRIVER_LOCAL_DEVICE_INFO_PROVIDER_IMPL_H_ |
OLD | NEW |