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 |
index 10f1d80ea509c8ac89a522e3d931d8865dfe788f..d5a999824edd804043c14f1f904ff98399d2c49f 100644 |
--- a/chrome/browser/sync/glue/device_info.h |
+++ b/chrome/browser/sync/glue/device_info.h |
@@ -7,6 +7,7 @@ |
#include <string> |
+#include "base/basictypes.h" |
#include "base/bind.h" |
#include "sync/protocol/sync.pb.h" |
@@ -22,7 +23,6 @@ namespace browser_sync { |
// Two different devices may end up generating identical DeviceInfos. |
class DeviceInfo { |
public: |
- DeviceInfo(); |
DeviceInfo(const std::string& client_name, |
const std::string& chrome_version, |
const std::string& sync_user_agent, |
@@ -56,6 +56,8 @@ class DeviceInfo { |
const std::string chrome_version_; |
const std::string sync_user_agent_; |
const sync_pb::SyncEnums::DeviceType device_type_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(DeviceInfo); |
}; |
} |