Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "google_apis/gcm/gcm_client.h" | 5 #include "google_apis/gcm/gcm_client.h" |
| 6 | 6 |
| 7 namespace gcm { | 7 namespace gcm { |
| 8 | 8 |
| 9 GCMClient::OutgoingMessage::OutgoingMessage() | 9 GCMClient::OutgoingMessage::OutgoingMessage() |
| 10 : time_to_live(0) { | 10 : time_to_live(0) { |
| 11 } | 11 } |
| 12 | 12 |
| 13 GCMClient::OutgoingMessage::~OutgoingMessage() { | 13 GCMClient::OutgoingMessage::~OutgoingMessage() { |
| 14 } | 14 } |
| 15 | 15 |
| 16 GCMClient::IncomingMessage::IncomingMessage() { | 16 GCMClient::IncomingMessage::IncomingMessage() { |
| 17 } | 17 } |
| 18 | 18 |
| 19 GCMClient::IncomingMessage::~IncomingMessage() { | 19 GCMClient::IncomingMessage::~IncomingMessage() { |
| 20 } | 20 } |
| 21 | 21 |
| 22 GCMClient::GCMStatistics::GCMStatistics() : gcm_client_created(false), | |
|
fgorski
2014/02/28 19:52:47
put : gcm_client_created on a new line
juyik
2014/03/01 00:21:57
Done.
| |
| 23 connection_client_created(false) { | |
| 24 } | |
| 25 | |
| 26 GCMClient::GCMStatistics::~GCMStatistics() { | |
| 27 } | |
| 28 | |
| 22 GCMClient::GCMClient() { | 29 GCMClient::GCMClient() { |
| 23 } | 30 } |
| 24 | 31 |
| 25 GCMClient::~GCMClient() { | 32 GCMClient::~GCMClient() { |
| 26 } | 33 } |
| 27 | 34 |
| 28 } // namespace gcm | 35 } // namespace gcm |
| OLD | NEW |