| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "google_apis/gcm/gcm_client.h" | |
| 6 | |
| 7 namespace gcm { | |
| 8 | |
| 9 GCMClient::ChromeBuildInfo::ChromeBuildInfo() | |
| 10 : platform(PLATFORM_UNKNOWN), | |
| 11 channel(CHANNEL_UNKNOWN) { | |
| 12 } | |
| 13 | |
| 14 GCMClient::ChromeBuildInfo::~ChromeBuildInfo() { | |
| 15 } | |
| 16 | |
| 17 GCMClient::OutgoingMessage::OutgoingMessage() | |
| 18 : time_to_live(kMaximumTTL) { | |
| 19 } | |
| 20 | |
| 21 GCMClient::OutgoingMessage::~OutgoingMessage() { | |
| 22 } | |
| 23 | |
| 24 GCMClient::IncomingMessage::IncomingMessage() { | |
| 25 } | |
| 26 | |
| 27 GCMClient::IncomingMessage::~IncomingMessage() { | |
| 28 } | |
| 29 | |
| 30 GCMClient::SendErrorDetails::SendErrorDetails() : result(UNKNOWN_ERROR) {} | |
| 31 | |
| 32 GCMClient::SendErrorDetails::~SendErrorDetails() {} | |
| 33 | |
| 34 GCMClient::GCMStatistics::GCMStatistics() | |
| 35 : is_recording(false), | |
| 36 gcm_client_created(false), | |
| 37 connection_client_created(false), | |
| 38 android_id(0), | |
| 39 send_queue_size(0), | |
| 40 resend_queue_size(0) { | |
| 41 } | |
| 42 | |
| 43 GCMClient::GCMStatistics::~GCMStatistics() { | |
| 44 } | |
| 45 | |
| 46 GCMClient::GCMClient() { | |
| 47 } | |
| 48 | |
| 49 GCMClient::~GCMClient() { | |
| 50 } | |
| 51 | |
| 52 } // namespace gcm | |
| OLD | NEW |