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

Side by Side Diff: webkit/plugins/ppapi/ppb_websocket_impl.h

Issue 8956008: WebSocket Pepper API: C++ utility class implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years 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
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698