diff options
author | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-09 22:27:31 +0000 |
---|---|---|
committer | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-09 22:27:31 +0000 |
commit | 2a848e0e4d75cd9195d15ff955014397482f9faa (patch) | |
tree | c01833c6bbc8948df2f4e43983a69b8e38a4dc51 /net/spdy/spdy_session.cc | |
parent | f5f12389d59defd2f4a8deb2db53fa13004f3e38 (diff) | |
download | chromium_src-2a848e0e4d75cd9195d15ff955014397482f9faa.zip chromium_src-2a848e0e4d75cd9195d15ff955014397482f9faa.tar.gz chromium_src-2a848e0e4d75cd9195d15ff955014397482f9faa.tar.bz2 |
Clean-up inline members of nested classes (net/)
Due to a bug, the Clang-plugin style checker failed to warn about
inline constructors, destructors, non-empty virtual methods, etc.
for nested classes.
The plugin has been fixed, and this patch is part of a clean-up of all
the code that now causes the plugin to issue errors.
BUG=139346
Review URL: https://chromiumcodereview.appspot.com/10854063
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150917 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy/spdy_session.cc')
-rw-r--r-- | net/spdy/spdy_session.cc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc index 75497a5..2b73fcc 100644 --- a/net/spdy/spdy_session.cc +++ b/net/spdy/spdy_session.cc @@ -324,8 +324,26 @@ SpdySession::SpdySession(const HostPortProxyPair& host_port_proxy_pair, // TODO(mbelshe): consider randomization of the stream_hi_water_mark. } +SpdySession::PendingCreateStream::PendingCreateStream( + const GURL& url, RequestPriority priority, + scoped_refptr<SpdyStream>* spdy_stream, + const BoundNetLog& stream_net_log, + const CompletionCallback& callback) + : url(&url), + priority(priority), + spdy_stream(spdy_stream), + stream_net_log(&stream_net_log), + callback(callback) { +} + SpdySession::PendingCreateStream::~PendingCreateStream() {} +SpdySession::CallbackResultPair::CallbackResultPair( + const CompletionCallback& callback_in, int result_in) + : callback(callback_in), + result(result_in) { +} + SpdySession::CallbackResultPair::~CallbackResultPair() {} SpdySession::~SpdySession() { |