Index: net/websockets/websocket_channel.h |
diff --git a/net/websockets/websocket_channel.h b/net/websockets/websocket_channel.h |
index 5c7a6cfc781c20d68698430891df228214dd3cad..6cbecc9657a7bc7f0a82cd071ea6b516b0367457 100644 |
--- a/net/websockets/websocket_channel.h |
+++ b/net/websockets/websocket_channel.h |
@@ -241,16 +241,14 @@ class NET_EXPORT WebSocketChannel { |
// This method performs sanity checks on the frame that are needed regardless |
// of the current state. Then, calls the HandleFrameByState() method below |
// which performs the appropriate action(s) depending on the current state. |
- ChannelState HandleFrame( |
- scoped_ptr<WebSocketFrame> frame) WARN_UNUSED_RESULT; |
+ ChannelState HandleFrame(scoped_ptr<WebSocketFrame> frame) WARN_UNUSED_RESULT; |
// Handles a single frame depending on the current state. It's used by the |
// HandleFrame() method. |
- ChannelState HandleFrameByState( |
- const WebSocketFrameHeader::OpCode opcode, |
- bool final, |
- const scoped_refptr<IOBuffer>& data_buffer, |
- size_t size) WARN_UNUSED_RESULT; |
+ ChannelState HandleFrameByState(const WebSocketFrameHeader::OpCode opcode, |
+ bool final, |
+ const scoped_refptr<IOBuffer>& data_buffer, |
+ size_t size) WARN_UNUSED_RESULT; |
// Forward a received data frame to the renderer, if connected. If |
// |expecting_continuation| is not equal to |expecting_to_read_continuation_|, |