| 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::ChromeBuildInfo::ChromeBuildInfo() |
| 10 : platform(PLATFORM_UNKNOWN), |
| 11 channel(CHANNEL_UNKNOWN) { |
| 12 } |
| 13 |
| 14 GCMClient::ChromeBuildInfo::~ChromeBuildInfo() { |
| 15 } |
| 16 |
| 9 GCMClient::OutgoingMessage::OutgoingMessage() | 17 GCMClient::OutgoingMessage::OutgoingMessage() |
| 10 : time_to_live(kMaximumTTL) { | 18 : time_to_live(kMaximumTTL) { |
| 11 } | 19 } |
| 12 | 20 |
| 13 GCMClient::OutgoingMessage::~OutgoingMessage() { | 21 GCMClient::OutgoingMessage::~OutgoingMessage() { |
| 14 } | 22 } |
| 15 | 23 |
| 16 GCMClient::IncomingMessage::IncomingMessage() { | 24 GCMClient::IncomingMessage::IncomingMessage() { |
| 17 } | 25 } |
| 18 | 26 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 35 GCMClient::GCMStatistics::~GCMStatistics() { | 43 GCMClient::GCMStatistics::~GCMStatistics() { |
| 36 } | 44 } |
| 37 | 45 |
| 38 GCMClient::GCMClient() { | 46 GCMClient::GCMClient() { |
| 39 } | 47 } |
| 40 | 48 |
| 41 GCMClient::~GCMClient() { | 49 GCMClient::~GCMClient() { |
| 42 } | 50 } |
| 43 | 51 |
| 44 } // namespace gcm | 52 } // namespace gcm |
| OLD | NEW |