OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef COMPONENTS_SYNC_DRIVER_LOCAL_DEVICE_INFO_PROVIDER_IMPL_H_ | |
6 #define COMPONENTS_SYNC_DRIVER_LOCAL_DEVICE_INFO_PROVIDER_IMPL_H_ | |
7 | |
8 #include <string> | |
9 | |
10 #include "base/macros.h" | |
11 #include "base/memory/weak_ptr.h" | |
12 #include "base/threading/non_thread_safe.h" | |
13 #include "components/sync/driver/device_info.h" | |
14 #include "components/sync/driver/local_device_info_provider.h" | |
15 #include "components/version_info/version_info.h" | |
16 | |
17 namespace browser_sync { | |
18 | |
19 class LocalDeviceInfoProviderImpl : public sync_driver::LocalDeviceInfoProvider, | |
20 public base::NonThreadSafe { | |
21 public: | |
22 LocalDeviceInfoProviderImpl(version_info::Channel channel, | |
23 const std::string& version, | |
24 bool is_tablet); | |
25 ~LocalDeviceInfoProviderImpl() override; | |
26 | |
27 // LocalDeviceInfoProvider implementation. | |
28 const sync_driver::DeviceInfo* GetLocalDeviceInfo() const override; | |
29 std::string GetSyncUserAgent() const override; | |
30 std::string GetLocalSyncCacheGUID() const override; | |
31 void Initialize( | |
32 const std::string& cache_guid, | |
33 const std::string& signin_scoped_device_id, | |
34 const scoped_refptr<base::TaskRunner>& blocking_task_runner) override; | |
35 std::unique_ptr<Subscription> RegisterOnInitializedCallback( | |
36 const base::Closure& callback) override; | |
37 void Clear() override; | |
38 | |
39 private: | |
40 void InitializeContinuation(const std::string& guid, | |
41 const std::string& signin_scoped_device_id, | |
42 const std::string& session_name); | |
43 | |
44 // The channel (CANARY, DEV, BETA, etc.) of the current client. | |
45 const version_info::Channel channel_; | |
46 | |
47 // The version string for the current client. | |
48 const std::string version_; | |
49 | |
50 // Whether this device has a tablet form factor (only used on Android | |
51 // devices). | |
52 const bool is_tablet_; | |
53 | |
54 std::string cache_guid_; | |
55 std::unique_ptr<sync_driver::DeviceInfo> local_device_info_; | |
56 base::CallbackList<void(void)> callback_list_; | |
57 base::WeakPtrFactory<LocalDeviceInfoProviderImpl> weak_factory_; | |
58 | |
59 DISALLOW_COPY_AND_ASSIGN(LocalDeviceInfoProviderImpl); | |
60 }; | |
61 | |
62 } // namespace browser_sync | |
63 | |
64 #endif // COMPONENTS_SYNC_DRIVER_LOCAL_DEVICE_INFO_PROVIDER_IMPL_H_ | |
OLD | NEW |