mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
50 lines
1.6 KiB
C
50 lines
1.6 KiB
C
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
// found in the LICENSE file.
|
||
|
//
|
||
|
// The Chrome-specific helper for quic::QuicConnection which uses
|
||
|
// a TaskRunner for alarms, and uses a DatagramClientSocket for writing data.
|
||
|
|
||
|
#ifndef NET_QUIC_QUIC_CHROMIUM_CONNECTION_HELPER_H_
|
||
|
#define NET_QUIC_QUIC_CHROMIUM_CONNECTION_HELPER_H_
|
||
|
|
||
|
#include "base/macros.h"
|
||
|
#include "net/base/ip_endpoint.h"
|
||
|
#include "net/base/net_export.h"
|
||
|
#include "net/socket/datagram_client_socket.h"
|
||
|
#include "net/third_party/quic/core/quic_connection.h"
|
||
|
#include "net/third_party/quic/core/quic_packets.h"
|
||
|
#include "net/third_party/quic/core/quic_simple_buffer_allocator.h"
|
||
|
#include "net/third_party/quic/core/quic_time.h"
|
||
|
|
||
|
namespace quic {
|
||
|
class QuicClock;
|
||
|
|
||
|
class QuicRandom;
|
||
|
} // namespace quic
|
||
|
namespace net {
|
||
|
|
||
|
class NET_EXPORT_PRIVATE QuicChromiumConnectionHelper
|
||
|
: public quic::QuicConnectionHelperInterface {
|
||
|
public:
|
||
|
QuicChromiumConnectionHelper(const quic::QuicClock* clock,
|
||
|
quic::QuicRandom* random_generator);
|
||
|
~QuicChromiumConnectionHelper() override;
|
||
|
|
||
|
// quic::QuicConnectionHelperInterface
|
||
|
const quic::QuicClock* GetClock() const override;
|
||
|
quic::QuicRandom* GetRandomGenerator() override;
|
||
|
quic::QuicBufferAllocator* GetStreamSendBufferAllocator() override;
|
||
|
|
||
|
private:
|
||
|
const quic::QuicClock* clock_;
|
||
|
quic::QuicRandom* random_generator_;
|
||
|
quic::SimpleBufferAllocator buffer_allocator_;
|
||
|
|
||
|
DISALLOW_COPY_AND_ASSIGN(QuicChromiumConnectionHelper);
|
||
|
};
|
||
|
|
||
|
} // namespace net
|
||
|
|
||
|
#endif // NET_QUIC_QUIC_CHROMIUM_CONNECTION_HELPER_H_
|