chromium/components/media_router/common/providers/cast/channel/cast_test_util.cc

// Copyright 2014 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/media_router/common/providers/cast/channel/cast_test_util.h"

#include <utility>

#include "base/task/single_thread_task_runner.h"
#include "base/token.h"
#include "net/base/ip_address.h"

namespace cast_channel {

MockCastTransport::MockCastTransport() {}
MockCastTransport::~MockCastTransport() {}

CastTransport::Delegate* MockCastTransport::current_delegate() const {}

void MockCastTransport::SetReadDelegate(
    std::unique_ptr<CastTransport::Delegate> delegate) {}

MockCastTransportDelegate::MockCastTransportDelegate() {}
MockCastTransportDelegate::~MockCastTransportDelegate() {}

MockCastSocketObserver::MockCastSocketObserver() {}
MockCastSocketObserver::~MockCastSocketObserver() {}

MockCastSocketService::MockCastSocketService(
    const scoped_refptr<base::SingleThreadTaskRunner>& task_runner) {}
MockCastSocketService::~MockCastSocketService() {}

MockCastSocket::MockCastSocket()
    :{}
MockCastSocket::~MockCastSocket() {}

net::IPEndPoint CreateIPEndPointForTest() {}

MockCastMessageHandler::MockCastMessageHandler(
    MockCastSocketService* socket_service)
    :{}

MockCastMessageHandler::~MockCastMessageHandler() = default;

}  // namespace cast_channel