| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 WEBKIT_PLUGINS_PPAPI_PPB_WEBSOCKET_IMPL_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPB_WEBSOCKET_IMPL_H_ |
| 6 #define WEBKIT_PLUGINS_PPAPI_PPB_WEBSOCKET_IMPL_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_PPB_WEBSOCKET_IMPL_H_ |
| 7 | 7 |
| 8 #include <queue> | 8 #include <queue> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 virtual void didReceiveBinaryData(const WebKit::WebData& binaryData); | 65 virtual void didReceiveBinaryData(const WebKit::WebData& binaryData); |
| 66 virtual void didReceiveMessageError(); | 66 virtual void didReceiveMessageError(); |
| 67 virtual void didUpdateBufferedAmount(unsigned long buffered_amount); | 67 virtual void didUpdateBufferedAmount(unsigned long buffered_amount); |
| 68 virtual void didStartClosingHandshake(); | 68 virtual void didStartClosingHandshake(); |
| 69 virtual void didClose(unsigned long unhandled_buffered_amount, | 69 virtual void didClose(unsigned long unhandled_buffered_amount, |
| 70 ClosingHandshakeCompletionStatus status, | 70 ClosingHandshakeCompletionStatus status, |
| 71 unsigned short code, | 71 unsigned short code, |
| 72 const WebKit::WebString& reason); | 72 const WebKit::WebString& reason); |
| 73 private: | 73 private: |
| 74 int32_t DoReceive(); | 74 int32_t DoReceive(); |
| 75 void AbortOutstandingReceive(); |
| 75 | 76 |
| 76 scoped_ptr<WebKit::WebSocket> websocket_; | 77 scoped_ptr<WebKit::WebSocket> websocket_; |
| 77 PP_WebSocketReadyState_Dev state_; | 78 PP_WebSocketReadyState_Dev state_; |
| 78 bool error_was_received_; | 79 bool error_was_received_; |
| 79 | 80 |
| 80 PP_CompletionCallback connect_callback_; | 81 PP_CompletionCallback connect_callback_; |
| 81 | 82 |
| 82 PP_CompletionCallback receive_callback_; | 83 PP_CompletionCallback receive_callback_; |
| 83 PP_Var* receive_callback_var_; | 84 PP_Var* receive_callback_var_; |
| 84 bool wait_for_receive_; | 85 bool wait_for_receive_; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 97 uint64_t buffered_amount_; | 98 uint64_t buffered_amount_; |
| 98 uint64_t buffered_amount_after_close_; | 99 uint64_t buffered_amount_after_close_; |
| 99 | 100 |
| 100 DISALLOW_COPY_AND_ASSIGN(PPB_WebSocket_Impl); | 101 DISALLOW_COPY_AND_ASSIGN(PPB_WebSocket_Impl); |
| 101 }; | 102 }; |
| 102 | 103 |
| 103 } // namespace ppapi | 104 } // namespace ppapi |
| 104 } // namespace webkit | 105 } // namespace webkit |
| 105 | 106 |
| 106 #endif // WEBKIT_PLUGINS_PPAPI_PPB_WEBSOCKET_IMPL_H_ | 107 #endif // WEBKIT_PLUGINS_PPAPI_PPB_WEBSOCKET_IMPL_H_ |
| OLD | NEW |