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

Unified Diff: chrome/browser/extensions/api/dial/dial_device_data.cc

Issue 1731483003: chrome: Add out-of-line copy ctors for complex classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
Index: chrome/browser/extensions/api/dial/dial_device_data.cc
diff --git a/chrome/browser/extensions/api/dial/dial_device_data.cc b/chrome/browser/extensions/api/dial/dial_device_data.cc
index f8f5540485e68f845b30f6c2c3e8df254dc4b1ec..821f0553e900c0272f67b7b15d1178a66a7353d3 100644
--- a/chrome/browser/extensions/api/dial/dial_device_data.cc
+++ b/chrome/browser/extensions/api/dial/dial_device_data.cc
@@ -17,6 +17,8 @@ DialDeviceData::DialDeviceData(const std::string& device_id,
response_time_(response_time), max_age_(-1), config_id_(-1) {
}
+DialDeviceData::DialDeviceData(const DialDeviceData& other) = default;
+
DialDeviceData::~DialDeviceData() { }
const GURL& DialDeviceData::device_description_url() const {

Powered by Google App Engine
This is Rietveld 408576698