Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: components/sync/device_info/device_info.h

Issue 2376123003: [Sync] Move //components/sync to the syncer namespace. (Closed)
Patch Set: Rebase. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_DEVICE_INFO_DEVICE_INFO_H_ 5 #ifndef COMPONENTS_SYNC_DEVICE_INFO_DEVICE_INFO_H_
6 #define COMPONENTS_SYNC_DEVICE_INFO_DEVICE_INFO_H_ 6 #define COMPONENTS_SYNC_DEVICE_INFO_DEVICE_INFO_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "components/sync/protocol/sync.pb.h" 12 #include "components/sync/protocol/sync.pb.h"
13 13
14 namespace base { 14 namespace base {
15 class DictionaryValue; 15 class DictionaryValue;
16 } 16 }
17 17
18 namespace sync_driver { 18 namespace syncer {
19 19
20 // A class that holds information regarding the properties of a device. 20 // A class that holds information regarding the properties of a device.
21 class DeviceInfo { 21 class DeviceInfo {
22 public: 22 public:
23 DeviceInfo(const std::string& guid, 23 DeviceInfo(const std::string& guid,
24 const std::string& client_name, 24 const std::string& client_name,
25 const std::string& chrome_version, 25 const std::string& chrome_version,
26 const std::string& sync_user_agent, 26 const std::string& sync_user_agent,
27 const sync_pb::SyncEnums::DeviceType device_type, 27 const sync_pb::SyncEnums::DeviceType device_type,
28 const std::string& signin_scoped_device_id); 28 const std::string& signin_scoped_device_id);
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 89
90 // Exposing |guid| would lead to a stable unique id for a device which 90 // Exposing |guid| would lead to a stable unique id for a device which
91 // can potentially be used for tracking. Public ids are privacy safe 91 // can potentially be used for tracking. Public ids are privacy safe
92 // ids in that the same device will have different id for different apps 92 // ids in that the same device will have different id for different apps
93 // and they are also reset when app/extension is uninstalled. 93 // and they are also reset when app/extension is uninstalled.
94 std::string public_id_; 94 std::string public_id_;
95 95
96 DISALLOW_COPY_AND_ASSIGN(DeviceInfo); 96 DISALLOW_COPY_AND_ASSIGN(DeviceInfo);
97 }; 97 };
98 98
99 } // namespace sync_driver 99 } // namespace syncer
100 100
101 #endif // COMPONENTS_SYNC_DEVICE_INFO_DEVICE_INFO_H_ 101 #endif // COMPONENTS_SYNC_DEVICE_INFO_DEVICE_INFO_H_
OLDNEW
« no previous file with comments | « components/sync/device_info/device_count_metrics_provider_unittest.cc ('k') | components/sync/device_info/device_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698