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

Unified Diff: net/spdy/spdy_proxy_client_socket.h

Issue 338583003: Cancel posted write callbacks in Disconnect(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix a comment. 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 | « no previous file | net/spdy/spdy_proxy_client_socket.cc » ('j') | net/spdy/spdy_proxy_client_socket.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_proxy_client_socket.h
diff --git a/net/spdy/spdy_proxy_client_socket.h b/net/spdy/spdy_proxy_client_socket.h
index fc9cae21a1c211c6a246d13c6dfd5ae6f9b634c7..7a293a0482ece45b49963a1197d95b8a5ba83ec1 100644
--- a/net/spdy/spdy_proxy_client_socket.h
+++ b/net/spdy/spdy_proxy_client_socket.h
@@ -113,6 +113,10 @@ class NET_EXPORT_PRIVATE SpdyProxyClientSocket : public ProxyClientSocket,
void LogBlockedTunnelResponse() const;
+ // Calls |callback.Run(result)|. Used to run a callback posted to the
+ // message loop.
+ void RunCallback(const CompletionCallback& callback, int result) const;
+
void OnIOComplete(int result);
int DoLoop(int last_io_result);
@@ -165,8 +169,13 @@ class NET_EXPORT_PRIVATE SpdyProxyClientSocket : public ProxyClientSocket,
const BoundNetLog net_log_;
+ // The default weak pointer factory.
base::WeakPtrFactory<SpdyProxyClientSocket> weak_factory_;
+ // Only used for posting write callbacks. Weak pointers created by this
+ // factory are invalidated in Disconnect().
+ base::WeakPtrFactory<SpdyProxyClientSocket> write_callback_weak_factory_;
+
DISALLOW_COPY_AND_ASSIGN(SpdyProxyClientSocket);
};
« no previous file with comments | « no previous file | net/spdy/spdy_proxy_client_socket.cc » ('j') | net/spdy/spdy_proxy_client_socket.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698