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

Unified Diff: net/spdy/spdy_session.h

Issue 8991001: base::Bind: Convert most of webkit/appcache. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clang fix. Created 9 years 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
Index: net/spdy/spdy_session.h
diff --git a/net/spdy/spdy_session.h b/net/spdy/spdy_session.h
index 513464d842fff72f7cc45f5bcaff3e85516527e2..3b9d6919762d97288f6e2324ce3f73fd3d27835d 100644
--- a/net/spdy/spdy_session.h
+++ b/net/spdy/spdy_session.h
@@ -254,7 +254,9 @@ class NET_EXPORT SpdySession : public base::RefCounted<SpdySession>,
priority(priority),
spdy_stream(spdy_stream),
stream_net_log(&stream_net_log),
- callback(callback) { }
+ callback(callback) {}
+
+ ~PendingCreateStream();
const GURL* url;
RequestPriority priority;
@@ -273,6 +275,7 @@ class NET_EXPORT SpdySession : public base::RefCounted<SpdySession>,
CallbackResultPair() : result(OK) {}
CallbackResultPair(const CompletionCallback& callback_in, int result_in)
: callback(callback_in), result(result_in) {}
+ ~CallbackResultPair();
CompletionCallback callback;
int result;

Powered by Google App Engine
This is Rietveld 408576698