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

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

Issue 15740018: [SPDY] Change SpdyStream::QueueStreamData() To SendStreamData() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 7 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/spdy/spdy_stream_test_util.cc ('k') | net/spdy/spdy_websocket_stream.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_WEBSOCKET_STREAM_H_ 5 #ifndef NET_SPDY_SPDY_WEBSOCKET_STREAM_H_
6 #define NET_SPDY_SPDY_WEBSOCKET_STREAM_H_ 6 #define NET_SPDY_SPDY_WEBSOCKET_STREAM_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/gtest_prod_util.h" 9 #include "base/gtest_prod_util.h"
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 RequestPriority request_priority, 69 RequestPriority request_priority,
70 const BoundNetLog& stream_net_log); 70 const BoundNetLog& stream_net_log);
71 71
72 int SendRequest(scoped_ptr<SpdyHeaderBlock> headers); 72 int SendRequest(scoped_ptr<SpdyHeaderBlock> headers);
73 int SendData(const char* data, int length); 73 int SendData(const char* data, int length);
74 void Close(); 74 void Close();
75 75
76 // SpdyStream::Delegate 76 // SpdyStream::Delegate
77 virtual SpdySendStatus OnSendHeadersComplete() OVERRIDE; 77 virtual SpdySendStatus OnSendHeadersComplete() OVERRIDE;
78 virtual void OnSendBody() OVERRIDE; 78 virtual void OnSendBody() OVERRIDE;
79 virtual SpdySendStatus OnSendBodyComplete(size_t bytes_sent) OVERRIDE; 79 virtual SpdySendStatus OnSendBodyComplete() OVERRIDE;
80 virtual int OnResponseReceived(const SpdyHeaderBlock& response, 80 virtual int OnResponseReceived(const SpdyHeaderBlock& response,
81 base::Time response_time, 81 base::Time response_time,
82 int status) OVERRIDE; 82 int status) OVERRIDE;
83 virtual void OnHeadersSent() OVERRIDE; 83 virtual void OnHeadersSent() OVERRIDE;
84 virtual int OnDataReceived(scoped_ptr<SpdyBuffer> buffer) OVERRIDE; 84 virtual int OnDataReceived(scoped_ptr<SpdyBuffer> buffer) OVERRIDE;
85 virtual void OnDataSent(size_t bytes_sent) OVERRIDE; 85 virtual void OnDataSent() OVERRIDE;
86 virtual void OnClose(int status) OVERRIDE; 86 virtual void OnClose(int status) OVERRIDE;
87 87
88 private: 88 private:
89 friend class SpdyWebSocketStreamSpdy2Test; 89 friend class SpdyWebSocketStreamSpdy2Test;
90 friend class SpdyWebSocketStreamSpdy3Test; 90 friend class SpdyWebSocketStreamSpdy3Test;
91 FRIEND_TEST_ALL_PREFIXES(SpdyWebSocketStreamSpdy2Test, Basic); 91 FRIEND_TEST_ALL_PREFIXES(SpdyWebSocketStreamSpdy2Test, Basic);
92 FRIEND_TEST_ALL_PREFIXES(SpdyWebSocketStreamSpdy3Test, Basic); 92 FRIEND_TEST_ALL_PREFIXES(SpdyWebSocketStreamSpdy3Test, Basic);
93 93
94 void OnSpdyStreamCreated(int status); 94 void OnSpdyStreamCreated(int status);
95 95
96 base::WeakPtrFactory<SpdyWebSocketStream> weak_ptr_factory_; 96 base::WeakPtrFactory<SpdyWebSocketStream> weak_ptr_factory_;
97 SpdyStreamRequest stream_request_; 97 SpdyStreamRequest stream_request_;
98 base::WeakPtr<SpdyStream> stream_; 98 base::WeakPtr<SpdyStream> stream_;
99 scoped_refptr<SpdySession> spdy_session_; 99 scoped_refptr<SpdySession> spdy_session_;
100 size_t pending_send_data_length_;
100 Delegate* delegate_; 101 Delegate* delegate_;
101 102
102 DISALLOW_COPY_AND_ASSIGN(SpdyWebSocketStream); 103 DISALLOW_COPY_AND_ASSIGN(SpdyWebSocketStream);
103 }; 104 };
104 105
105 } // namespace net 106 } // namespace net
106 107
107 #endif // NET_SPDY_SPDY_WEBSOCKET_STREAM_H_ 108 #endif // NET_SPDY_SPDY_WEBSOCKET_STREAM_H_
OLDNEW
« no previous file with comments | « net/spdy/spdy_stream_test_util.cc ('k') | net/spdy/spdy_websocket_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698