Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(391)

Unified Diff: net/quic/quic_chromium_connection_helper.h

Issue 1581283002: Rename chromium-specific QUIC classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add missing Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/quic/quic_chromium_client_stream_test.cc ('k') | net/quic/quic_chromium_connection_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_chromium_connection_helper.h
diff --git a/net/quic/quic_connection_helper.h b/net/quic/quic_chromium_connection_helper.h
similarity index 76%
rename from net/quic/quic_connection_helper.h
rename to net/quic/quic_chromium_connection_helper.h
index 83961aa81cdde255c28f9c9d0736305b888db2f2..2b0464945d9fe80a7df4f614dd3f29a80baff80f 100644
--- a/net/quic/quic_connection_helper.h
+++ b/net/quic/quic_chromium_connection_helper.h
@@ -8,13 +8,12 @@
#ifndef NET_QUIC_QUIC_CONNECTION_HELPER_H_
#define NET_QUIC_QUIC_CONNECTION_HELPER_H_
-#include "net/quic/quic_connection.h"
-
#include <set>
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "net/base/ip_endpoint.h"
+#include "net/quic/quic_connection.h"
#include "net/quic/quic_protocol.h"
#include "net/quic/quic_simple_buffer_allocator.h"
#include "net/quic/quic_time.h"
@@ -29,13 +28,13 @@ namespace net {
class QuicClock;
class QuicRandom;
-class NET_EXPORT_PRIVATE QuicConnectionHelper
+class NET_EXPORT_PRIVATE QuicChromiumConnectionHelper
: public QuicConnectionHelperInterface {
public:
- QuicConnectionHelper(base::TaskRunner* task_runner,
- const QuicClock* clock,
- QuicRandom* random_generator);
- ~QuicConnectionHelper() override;
+ QuicChromiumConnectionHelper(base::TaskRunner* task_runner,
+ const QuicClock* clock,
+ QuicRandom* random_generator);
+ ~QuicChromiumConnectionHelper() override;
// QuicConnectionHelperInterface
const QuicClock* GetClock() const override;
@@ -48,9 +47,9 @@ class NET_EXPORT_PRIVATE QuicConnectionHelper
const QuicClock* clock_;
QuicRandom* random_generator_;
SimpleBufferAllocator buffer_allocator_;
- base::WeakPtrFactory<QuicConnectionHelper> weak_factory_;
+ base::WeakPtrFactory<QuicChromiumConnectionHelper> weak_factory_;
- DISALLOW_COPY_AND_ASSIGN(QuicConnectionHelper);
+ DISALLOW_COPY_AND_ASSIGN(QuicChromiumConnectionHelper);
};
} // namespace net
« no previous file with comments | « net/quic/quic_chromium_client_stream_test.cc ('k') | net/quic/quic_chromium_connection_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698