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

Unified Diff: components/gcm_driver/gcm_client.h

Issue 1728033002: components: 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: components/gcm_driver/gcm_client.h
diff --git a/components/gcm_driver/gcm_client.h b/components/gcm_driver/gcm_client.h
index 4b216842a7eb10d054706889fadf15373c0d489e..c7f0aa958645d0ac7eac1881cf891ea615409f1d 100644
--- a/components/gcm_driver/gcm_client.h
+++ b/components/gcm_driver/gcm_client.h
@@ -103,6 +103,7 @@ class GCMClient {
// Detailed information of the Send Error event.
struct SendErrorDetails {
SendErrorDetails();
+ SendErrorDetails(const SendErrorDetails& other);
~SendErrorDetails();
std::string message_id;
@@ -114,6 +115,7 @@ class GCMClient {
struct GCMStatistics {
public:
GCMStatistics();
+ GCMStatistics(const GCMStatistics& other);
~GCMStatistics();
bool is_recording;

Powered by Google App Engine
This is Rietveld 408576698