blob: 687cc933cce3ebda787e53143b095882303a1aea [file] [log] [blame]
// 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 = 24 * 60 * 60; // 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