chromium/components/gcm_driver/common/gcm_message.cc

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/gcm_driver/common/gcm_message.h"

namespace gcm {

// static
const int OutgoingMessage::kMaximumTTL =;  // 1 day.

OutgoingMessage::OutgoingMessage() = default;

OutgoingMessage::OutgoingMessage(const OutgoingMessage& other) = default;

OutgoingMessage::~OutgoingMessage() = default;

IncomingMessage::IncomingMessage() = default;

IncomingMessage::IncomingMessage(const IncomingMessage& other) = default;
IncomingMessage::IncomingMessage(IncomingMessage&& other) = default;

IncomingMessage& IncomingMessage::operator=(const IncomingMessage& other) =
    default;
IncomingMessage& IncomingMessage::operator=(IncomingMessage&& other) = default;

IncomingMessage::~IncomingMessage() = default;

}  // namespace gcm