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

Side by Side Diff: net/spdy/spdy_session.h

Issue 1413683005: Add new, unused methods to SpdyFramerVisitorInterface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile errors of flip_in_mem_edsm_server_unittests target. Created 5 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « net/spdy/spdy_framer_test.cc ('k') | net/spdy/spdy_session.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_SPDY_SPDY_SESSION_H_ 5 #ifndef NET_SPDY_SPDY_SESSION_H_
6 #define NET_SPDY_SPDY_SESSION_H_ 6 #define NET_SPDY_SPDY_SESSION_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 813 matching lines...) Expand 10 before | Expand all | Expand 10 after
824 SpdyGoAwayStatus status, 824 SpdyGoAwayStatus status,
825 StringPiece debug_data) override; 825 StringPiece debug_data) override;
826 void OnDataFrameHeader(SpdyStreamId stream_id, 826 void OnDataFrameHeader(SpdyStreamId stream_id,
827 size_t length, 827 size_t length,
828 bool fin) override; 828 bool fin) override;
829 void OnStreamFrameData(SpdyStreamId stream_id, 829 void OnStreamFrameData(SpdyStreamId stream_id,
830 const char* data, 830 const char* data,
831 size_t len, 831 size_t len,
832 bool fin) override; 832 bool fin) override;
833 void OnStreamPadding(SpdyStreamId stream_id, size_t len) override; 833 void OnStreamPadding(SpdyStreamId stream_id, size_t len) override;
834 SpdyHeadersHandlerInterface* OnHeaderFrameStart(
835 SpdyStreamId stream_id) override;
836 void OnHeaderFrameEnd(SpdyStreamId stream_id, bool end_headers) override;
834 void OnSettings(bool clear_persisted) override; 837 void OnSettings(bool clear_persisted) override;
835 void OnSetting(SpdySettingsIds id, uint8 flags, uint32 value) override; 838 void OnSetting(SpdySettingsIds id, uint8 flags, uint32 value) override;
836 void OnWindowUpdate(SpdyStreamId stream_id, int delta_window_size) override; 839 void OnWindowUpdate(SpdyStreamId stream_id, int delta_window_size) override;
837 void OnPushPromise(SpdyStreamId stream_id, 840 void OnPushPromise(SpdyStreamId stream_id,
838 SpdyStreamId promised_stream_id, 841 SpdyStreamId promised_stream_id,
839 const SpdyHeaderBlock& headers) override; 842 const SpdyHeaderBlock& headers) override;
840 void OnSynStream(SpdyStreamId stream_id, 843 void OnSynStream(SpdyStreamId stream_id,
841 SpdyStreamId associated_stream_id, 844 SpdyStreamId associated_stream_id,
842 SpdyPriority priority, 845 SpdyPriority priority,
843 bool fin, 846 bool fin,
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
1182 // Used for posting asynchronous IO tasks. We use this even though 1185 // Used for posting asynchronous IO tasks. We use this even though
1183 // SpdySession is refcounted because we don't need to keep the SpdySession 1186 // SpdySession is refcounted because we don't need to keep the SpdySession
1184 // alive if the last reference is within a RunnableMethod. Just revoke the 1187 // alive if the last reference is within a RunnableMethod. Just revoke the
1185 // method. 1188 // method.
1186 base::WeakPtrFactory<SpdySession> weak_factory_; 1189 base::WeakPtrFactory<SpdySession> weak_factory_;
1187 }; 1190 };
1188 1191
1189 } // namespace net 1192 } // namespace net
1190 1193
1191 #endif // NET_SPDY_SPDY_SESSION_H_ 1194 #endif // NET_SPDY_SPDY_SESSION_H_
OLDNEW
« no previous file with comments | « net/spdy/spdy_framer_test.cc ('k') | net/spdy/spdy_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698