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

Unified Diff: chrome/browser/sync/glue/device_info.h

Issue 10911073: NOT FOR COMMIT: Add DeviceInfo type and ChangeProcessor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix several issues Created 8 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/sync/glue/change_processor.cc ('k') | chrome/browser/sync/glue/device_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/glue/device_info.h
diff --git a/chrome/browser/sync/glue/device_info.h b/chrome/browser/sync/glue/device_info.h
new file mode 100644
index 0000000000000000000000000000000000000000..9737b7f2a965cdcd52e4ffbf2ea1713af503479a
--- /dev/null
+++ b/chrome/browser/sync/glue/device_info.h
@@ -0,0 +1,54 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_SYNC_GLUE_DEVICE_INFO_H_
+#define CHROME_BROWSER_SYNC_GLUE_DEVICE_INFO_H_
+
+#include <string>
+#include "base/bind.h"
+#include "sync/protocol/sync.pb.h"
+
+namespace browser_sync {
+
+// A class that holds information regarding the properties of a device.
+//
+// These objects do not contain enough information to uniquely identify devices.
+// Two different devices may end up generating identical DeviceInfos.
+class DeviceInfo {
+ public:
+ DeviceInfo();
+ DeviceInfo(const std::string& client_name,
+ const std::string& sync_user_agent,
+ const sync_pb::SyncEnums::DeviceType device_type);
+ ~DeviceInfo();
+
+ const std::string& client_name() const;
+ const std::string& sync_user_agent() const;
+ sync_pb::SyncEnums::DeviceType device_type() const;
+
+ // Compares this objects fields with another.
+ bool Equals(const DeviceInfo& other) const;
+
+ static sync_pb::SyncEnums::DeviceType GetLocalDeviceType();
+ static void CreateLocalDeviceInfo(
+ base::Callback<void(const DeviceInfo& local_info)> callback);
+
+ // Helper to construct a user agent string (ASCII) suitable for use by
+ // the syncapi for any HTTP communication. This string is used by the sync
+ // backend for classifying client types when calculating statistics.
+ static std::string MakeUserAgentForSyncApi();
+
+ private:
+ static void CreateLocalDeviceInfoContinuation(
+ base::Callback<void(const DeviceInfo& local_info)> callback,
+ const std::string& session_name);
+
+ std::string client_name_;
+ std::string sync_user_agent_;
+ sync_pb::SyncEnums::DeviceType device_type_;
+};
+
+}
+
+#endif // CHROME_BROWSER_SYNC_GLUE_DEVICE_INFO_H_
« no previous file with comments | « chrome/browser/sync/glue/change_processor.cc ('k') | chrome/browser/sync/glue/device_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698