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

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

Issue 8989046: WebSocket Pepper API: add interfaces to handle binaryType attribute (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix reviewed points Created 8 years, 11 months 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
« no previous file with comments | « ppapi/thunk/ppb_websocket_thunk.cc ('k') | webkit/plugins/ppapi/ppb_websocket_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 PP_CompletionCallback callbac) OVERRIDE; 50 PP_CompletionCallback callbac) OVERRIDE;
51 virtual int32_t SendMessage(PP_Var message) OVERRIDE; 51 virtual int32_t SendMessage(PP_Var message) OVERRIDE;
52 virtual uint64_t GetBufferedAmount() OVERRIDE; 52 virtual uint64_t GetBufferedAmount() OVERRIDE;
53 virtual uint16_t GetCloseCode() OVERRIDE; 53 virtual uint16_t GetCloseCode() OVERRIDE;
54 virtual PP_Var GetCloseReason() OVERRIDE; 54 virtual PP_Var GetCloseReason() OVERRIDE;
55 virtual PP_Bool GetCloseWasClean() OVERRIDE; 55 virtual PP_Bool GetCloseWasClean() OVERRIDE;
56 virtual PP_Var GetExtensions() OVERRIDE; 56 virtual PP_Var GetExtensions() OVERRIDE;
57 virtual PP_Var GetProtocol() OVERRIDE; 57 virtual PP_Var GetProtocol() OVERRIDE;
58 virtual PP_WebSocketReadyState_Dev GetReadyState() OVERRIDE; 58 virtual PP_WebSocketReadyState_Dev GetReadyState() OVERRIDE;
59 virtual PP_Var GetURL() OVERRIDE; 59 virtual PP_Var GetURL() OVERRIDE;
60 virtual PP_Bool SetBinaryType(
61 PP_WebSocketBinaryType_Dev binary_type) OVERRIDE;
62 virtual PP_WebSocketBinaryType_Dev GetBinaryType() OVERRIDE;
60 63
61 // WebSocketClient implementation. 64 // WebSocketClient implementation.
62 virtual void didConnect(); 65 virtual void didConnect();
63 virtual void didReceiveMessage(const WebKit::WebString& message); 66 virtual void didReceiveMessage(const WebKit::WebString& message);
64 virtual void didReceiveBinaryData(const WebKit::WebData& binaryData); 67 virtual void didReceiveBinaryData(const WebKit::WebData& binaryData);
65 virtual void didReceiveMessageError(); 68 virtual void didReceiveMessageError();
66 virtual void didUpdateBufferedAmount(unsigned long buffered_amount); 69 virtual void didUpdateBufferedAmount(unsigned long buffered_amount);
67 virtual void didStartClosingHandshake(); 70 virtual void didStartClosingHandshake();
68 virtual void didClose(unsigned long unhandled_buffered_amount, 71 virtual void didClose(unsigned long unhandled_buffered_amount,
69 ClosingHandshakeCompletionStatus status, 72 ClosingHandshakeCompletionStatus status,
70 unsigned short code, 73 unsigned short code,
71 const WebKit::WebString& reason); 74 const WebKit::WebString& reason);
72 private: 75 private:
73 int32_t DoReceive(); 76 int32_t DoReceive();
74 77
75 scoped_ptr<WebKit::WebSocket> websocket_; 78 scoped_ptr<WebKit::WebSocket> websocket_;
76 PP_WebSocketReadyState_Dev state_; 79 PP_WebSocketReadyState_Dev state_;
80 PP_WebSocketBinaryType_Dev binary_type_;
77 bool error_was_received_; 81 bool error_was_received_;
78 82
79 scoped_refptr< ::ppapi::TrackedCallback> connect_callback_; 83 scoped_refptr< ::ppapi::TrackedCallback> connect_callback_;
80 84
81 scoped_refptr< ::ppapi::TrackedCallback> receive_callback_; 85 scoped_refptr< ::ppapi::TrackedCallback> receive_callback_;
82 PP_Var* receive_callback_var_; 86 PP_Var* receive_callback_var_;
83 bool wait_for_receive_; 87 bool wait_for_receive_;
84 // TODO(toyoshim): Use std::queue<Var> when it supports binary. 88 // TODO(toyoshim): Use std::queue<Var> when it supports binary.
85 std::queue<PP_Var> received_messages_; 89 std::queue<PP_Var> received_messages_;
86 90
87 scoped_refptr< ::ppapi::TrackedCallback> close_callback_; 91 scoped_refptr< ::ppapi::TrackedCallback> close_callback_;
88 uint16_t close_code_; 92 uint16_t close_code_;
89 scoped_refptr< ::ppapi::StringVar> close_reason_; 93 scoped_refptr< ::ppapi::StringVar> close_reason_;
90 PP_Bool close_was_clean_; 94 PP_Bool close_was_clean_;
91 95
92 scoped_refptr< ::ppapi::StringVar> empty_string_; 96 scoped_refptr< ::ppapi::StringVar> empty_string_;
93 scoped_refptr< ::ppapi::StringVar> extensions_; 97 scoped_refptr< ::ppapi::StringVar> extensions_;
94 scoped_refptr< ::ppapi::StringVar> url_; 98 scoped_refptr< ::ppapi::StringVar> url_;
95 99
96 uint64_t buffered_amount_; 100 uint64_t buffered_amount_;
97 uint64_t buffered_amount_after_close_; 101 uint64_t buffered_amount_after_close_;
98 102
99 DISALLOW_COPY_AND_ASSIGN(PPB_WebSocket_Impl); 103 DISALLOW_COPY_AND_ASSIGN(PPB_WebSocket_Impl);
100 }; 104 };
101 105
102 } // namespace ppapi 106 } // namespace ppapi
103 } // namespace webkit 107 } // namespace webkit
104 108
105 #endif // WEBKIT_PLUGINS_PPAPI_PPB_WEBSOCKET_IMPL_H_ 109 #endif // WEBKIT_PLUGINS_PPAPI_PPB_WEBSOCKET_IMPL_H_
OLDNEW
« no previous file with comments | « ppapi/thunk/ppb_websocket_thunk.cc ('k') | webkit/plugins/ppapi/ppb_websocket_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698