| Index: trunk/src/jingle/glue/pseudotcp_adapter_unittest.cc
|
| ===================================================================
|
| --- trunk/src/jingle/glue/pseudotcp_adapter_unittest.cc (revision 262001)
|
| +++ trunk/src/jingle/glue/pseudotcp_adapter_unittest.cc (working copy)
|
| @@ -142,13 +142,13 @@
|
| return buf_len;
|
| }
|
|
|
| - virtual int SetReceiveBufferSize(int32 size) OVERRIDE {
|
| + virtual bool SetReceiveBufferSize(int32 size) OVERRIDE {
|
| NOTIMPLEMENTED();
|
| - return net::ERR_NOT_IMPLEMENTED;
|
| + return false;
|
| }
|
| - virtual int SetSendBufferSize(int32 size) OVERRIDE {
|
| + virtual bool SetSendBufferSize(int32 size) OVERRIDE {
|
| NOTIMPLEMENTED();
|
| - return net::ERR_NOT_IMPLEMENTED;
|
| + return false;
|
| }
|
|
|
| private:
|
|
|