summaryrefslogtreecommitdiffstats
path: root/net/spdy/spdy_stream_test_util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/spdy/spdy_stream_test_util.cc')
-rw-r--r--net/spdy/spdy_stream_test_util.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/net/spdy/spdy_stream_test_util.cc b/net/spdy/spdy_stream_test_util.cc
index b434f3e..c9a06fd 100644
--- a/net/spdy/spdy_stream_test_util.cc
+++ b/net/spdy/spdy_stream_test_util.cc
@@ -24,8 +24,8 @@ SpdySendStatus ClosingDelegate::OnSendHeadersComplete() {
return NO_MORE_DATA_TO_SEND;
}
-int ClosingDelegate::OnSendBody() {
- return OK;
+void ClosingDelegate::OnSendBody() {
+ ADD_FAILURE() << "OnSendBody should not be called";
}
SpdySendStatus ClosingDelegate::OnSendBodyComplete(size_t /*bytes_sent*/) {
@@ -131,9 +131,10 @@ StreamDelegateDoNothing::StreamDelegateDoNothing(
StreamDelegateDoNothing::~StreamDelegateDoNothing() {
}
-int StreamDelegateDoNothing::OnSendBody() {
- return OK;
+void StreamDelegateDoNothing::OnSendBody() {
+ ADD_FAILURE() << "OnSendBody should not be called";
}
+
SpdySendStatus StreamDelegateDoNothing::OnSendBodyComplete(
size_t /*bytes_sent*/) {
return NO_MORE_DATA_TO_SEND;
@@ -150,10 +151,10 @@ StreamDelegateSendImmediate::StreamDelegateSendImmediate(
StreamDelegateSendImmediate::~StreamDelegateSendImmediate() {
}
-int StreamDelegateSendImmediate::OnSendBody() {
+void StreamDelegateSendImmediate::OnSendBody() {
ADD_FAILURE() << "OnSendBody should not be called";
- return ERR_UNEXPECTED;
}
+
SpdySendStatus StreamDelegateSendImmediate::OnSendBodyComplete(
size_t /*bytes_sent*/) {
ADD_FAILURE() << "OnSendBodyComplete should not be called";
@@ -192,10 +193,9 @@ SpdySendStatus StreamDelegateWithBody::OnSendHeadersComplete() {
return MORE_DATA_TO_SEND;
}
-int StreamDelegateWithBody::OnSendBody() {
+void StreamDelegateWithBody::OnSendBody() {
stream()->QueueStreamData(buf_.get(), buf_->BytesRemaining(),
DATA_FLAG_NONE);
- return ERR_IO_PENDING;
}
SpdySendStatus StreamDelegateWithBody::OnSendBodyComplete(size_t bytes_sent) {