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

Unified Diff: net/tools/quic/quic_dispatcher.h

Issue 359653003: Simplify the QuicDispatcher::OnCanWrite logic (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed wtc's comments in Patch Set 1 Created 6 years, 6 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_server_session.h ('k') | net/tools/quic/quic_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_dispatcher.h
diff --git a/net/tools/quic/quic_dispatcher.h b/net/tools/quic/quic_dispatcher.h
index 9553583f7320d60acad25b1127c08c9ee11b0ac9..088de311af3a27fe490cc60c7e551e970a6789df 100644
--- a/net/tools/quic/quic_dispatcher.h
+++ b/net/tools/quic/quic_dispatcher.h
@@ -97,7 +97,8 @@ class QuicDispatcher : public QuicServerSessionVisitor,
QuicErrorCode error) OVERRIDE;
// Queues the blocked writer for later resumption.
- virtual void OnWriteBlocked(QuicBlockedWriterInterface* writer) OVERRIDE;
+ virtual void OnWriteBlocked(
+ QuicBlockedWriterInterface* blocked_writer) OVERRIDE;
typedef base::hash_map<QuicConnectionId, QuicSession*> SessionMap;
@@ -106,8 +107,6 @@ class QuicDispatcher : public QuicServerSessionVisitor,
const SessionMap& session_map() const { return session_map_; }
- WriteBlockedList* write_blocked_list() { return &write_blocked_list_; }
-
protected:
// Instantiates a new low-level packet writer. Caller takes ownership of the
// returned object.
« no previous file with comments | « net/quic/quic_server_session.h ('k') | net/tools/quic/quic_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698