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_SYNC_GLUE_LOCAL_DEVICE_INFO_PROVIDER_IMPL_H_ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_LOCAL_DEVICE_INFO_PROVIDER_IMPL_H_ |
6 #define CHROME_BROWSER_SYNC_GLUE_LOCAL_DEVICE_INFO_PROVIDER_IMPL_H_ | 6 #define CHROME_BROWSER_SYNC_GLUE_LOCAL_DEVICE_INFO_PROVIDER_IMPL_H_ |
7 | 7 |
8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
9 #include "components/sync_driver/device_info.h" | 9 #include "components/sync_driver/device_info.h" |
10 #include "components/sync_driver/local_device_info_provider.h" | 10 #include "components/sync_driver/local_device_info_provider.h" |
11 | 11 |
12 namespace chrome { | 12 namespace chrome { |
13 class VersionInfo; | 13 class VersionInfo; |
14 } | 14 } |
15 | 15 |
16 namespace browser_sync { | 16 namespace browser_sync { |
17 | 17 |
18 class LocalDeviceInfoProviderImpl | 18 class LocalDeviceInfoProviderImpl |
19 : public sync_driver::LocalDeviceInfoProvider { | 19 : public sync_driver::LocalDeviceInfoProvider { |
20 public: | 20 public: |
21 LocalDeviceInfoProviderImpl(); | 21 LocalDeviceInfoProviderImpl(); |
22 virtual ~LocalDeviceInfoProviderImpl(); | 22 ~LocalDeviceInfoProviderImpl() override; |
23 | 23 |
24 // LocalDeviceInfoProvider implementation. | 24 // LocalDeviceInfoProvider implementation. |
25 virtual const sync_driver::DeviceInfo* GetLocalDeviceInfo() const override; | 25 const sync_driver::DeviceInfo* GetLocalDeviceInfo() const override; |
26 virtual std::string GetLocalSyncCacheGUID() const override; | 26 std::string GetLocalSyncCacheGUID() const override; |
27 virtual void Initialize( | 27 void Initialize(const std::string& cache_guid, |
28 const std::string& cache_guid, | 28 const std::string& signin_scoped_device_id) override; |
29 const std::string& signin_scoped_device_id) override; | 29 scoped_ptr<Subscription> RegisterOnInitializedCallback( |
30 virtual scoped_ptr<Subscription> RegisterOnInitializedCallback( | 30 const base::Closure& callback) override; |
31 const base::Closure& callback) override; | |
32 | 31 |
33 // Helper to construct a user agent string (ASCII) suitable for use by | 32 // Helper to construct a user agent string (ASCII) suitable for use by |
34 // the syncapi for any HTTP communication. This string is used by the sync | 33 // the syncapi for any HTTP communication. This string is used by the sync |
35 // backend for classifying client types when calculating statistics. | 34 // backend for classifying client types when calculating statistics. |
36 static std::string MakeUserAgentForSyncApi( | 35 static std::string MakeUserAgentForSyncApi( |
37 const chrome::VersionInfo& version_info); | 36 const chrome::VersionInfo& version_info); |
38 | 37 |
39 private: | 38 private: |
40 void InitializeContinuation(const std::string& guid, | 39 void InitializeContinuation(const std::string& guid, |
41 const std::string& signin_scoped_device_id, | 40 const std::string& signin_scoped_device_id, |
42 const std::string& session_name); | 41 const std::string& session_name); |
43 | 42 |
44 std::string cache_guid_; | 43 std::string cache_guid_; |
45 scoped_ptr<sync_driver::DeviceInfo> local_device_info_; | 44 scoped_ptr<sync_driver::DeviceInfo> local_device_info_; |
46 base::CallbackList<void(void)> callback_list_; | 45 base::CallbackList<void(void)> callback_list_; |
47 base::WeakPtrFactory<LocalDeviceInfoProviderImpl> weak_factory_; | 46 base::WeakPtrFactory<LocalDeviceInfoProviderImpl> weak_factory_; |
48 | 47 |
49 DISALLOW_COPY_AND_ASSIGN(LocalDeviceInfoProviderImpl); | 48 DISALLOW_COPY_AND_ASSIGN(LocalDeviceInfoProviderImpl); |
50 }; | 49 }; |
51 | 50 |
52 } // namespace browser_sync | 51 } // namespace browser_sync |
53 | 52 |
54 #endif // CHROME_BROWSER_SYNC_GLUE_LOCAL_DEVICE_INFO_PROVIDER_IMPL_H_ | 53 #endif // CHROME_BROWSER_SYNC_GLUE_LOCAL_DEVICE_INFO_PROVIDER_IMPL_H_ |
OLD | NEW |