diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-03 01:12:10 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-03 01:12:10 +0000 |
commit | a4605c5a23b4d2fc5f15b8ab40293b6ecf223ea6 (patch) | |
tree | 50945b9282b3e24d7275953e84c712cb34e8c188 /net/spdy | |
parent | 1523b746ecd2e88357deb710e891011cb55db9ab (diff) | |
download | chromium_src-a4605c5a23b4d2fc5f15b8ab40293b6ecf223ea6.zip chromium_src-a4605c5a23b4d2fc5f15b8ab40293b6ecf223ea6.tar.gz chromium_src-a4605c5a23b4d2fc5f15b8ab40293b6ecf223ea6.tar.bz2 |
Cleanup: Another round of unused forward declaration cleanup.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8598030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124808 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy')
-rw-r--r-- | net/spdy/spdy_session.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/spdy/spdy_session.h b/net/spdy/spdy_session.h index 743cced..0610709c 100644 --- a/net/spdy/spdy_session.h +++ b/net/spdy/spdy_session.h @@ -6,7 +6,7 @@ #define NET_SPDY_SPDY_SESSION_H_ #pragma once -#include <deque> +#include <algorithm> #include <list> #include <map> #include <queue> @@ -42,7 +42,6 @@ const int kMss = 1430; const int kMaxSpdyFrameChunkSize = (2 * kMss) - spdy::SpdyFrame::kHeaderSize; class BoundNetLog; -class SpdySettingsStorage; class SpdyStream; class SSLInfo; |