chromium/services/network/mojo_socket_test_util.h

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

#ifndef SERVICES_NETWORK_MOJO_SOCKET_TEST_UTIL_H_
#define SERVICES_NETWORK_MOJO_SOCKET_TEST_UTIL_H_

#include "base/run_loop.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "net/base/net_errors.h"
#include "services/network/public/mojom/tcp_socket.mojom.h"

namespace network {

// A mojom::SocketObserver implementation used in tests.
class TestSocketObserver : public mojom::SocketObserver {};

}  // namespace network

#endif  // SERVICES_NETWORK_MOJO_SOCKET_TEST_UTIL_H_