| Index: net/tools/quic/quic_server.h
|
| diff --git a/net/tools/quic/quic_server.h b/net/tools/quic/quic_server.h
|
| index 44a9be3fadf32b0d3814b73b2fc2dafa28b1b4ef..7bce8e6b05c31f9a55cd8f773115ca27e09a420d 100644
|
| --- a/net/tools/quic/quic_server.h
|
| +++ b/net/tools/quic/quic_server.h
|
| @@ -24,7 +24,7 @@
|
| #include "net/quic/platform/api/quic_socket_address.h"
|
| #include "net/tools/epoll_server/epoll_server.h"
|
| #include "net/tools/quic/quic_default_packet_writer.h"
|
| -#include "net/tools/quic/quic_in_memory_cache.h"
|
| +#include "net/tools/quic/quic_http_response_cache.h"
|
|
|
| namespace net {
|
|
|
| @@ -38,12 +38,12 @@ class QuicPacketReader;
|
| class QuicServer : public EpollCallbackInterface {
|
| public:
|
| QuicServer(std::unique_ptr<ProofSource> proof_source,
|
| - QuicInMemoryCache* in_memory_cache);
|
| + QuicHttpResponseCache* response_cache);
|
| QuicServer(std::unique_ptr<ProofSource> proof_source,
|
| const QuicConfig& config,
|
| const QuicCryptoServerConfig::ConfigOptions& server_config_options,
|
| const QuicVersionVector& supported_versions,
|
| - QuicInMemoryCache* in_memory_cache);
|
| + QuicHttpResponseCache* response_cache);
|
|
|
| ~QuicServer() override;
|
|
|
| @@ -87,7 +87,7 @@ class QuicServer : public EpollCallbackInterface {
|
|
|
| QuicVersionManager* version_manager() { return &version_manager_; }
|
|
|
| - QuicInMemoryCache* in_memory_cache() { return in_memory_cache_; }
|
| + QuicHttpResponseCache* response_cache() { return response_cache_; }
|
|
|
| private:
|
| friend class net::test::QuicServerPeer;
|
| @@ -130,7 +130,7 @@ class QuicServer : public EpollCallbackInterface {
|
| // space than allowed on the stack.
|
| std::unique_ptr<QuicPacketReader> packet_reader_;
|
|
|
| - QuicInMemoryCache* in_memory_cache_; // unowned.
|
| + QuicHttpResponseCache* response_cache_; // unowned.
|
|
|
| DISALLOW_COPY_AND_ASSIGN(QuicServer);
|
| };
|
|
|