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

Unified Diff: ppapi/thunk/ppb_websocket_api.h

Issue 9192009: WebSocket Pepper API: make the API out of dev (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove binary type handling interfaces 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/thunk/ppb_websocket_api.h
diff --git a/ppapi/thunk/ppb_websocket_api.h b/ppapi/thunk/ppb_websocket_api.h
index 40125829a8f62bd43cebf9a1ba16e6cb443a91ef..c769cecc567f0037702a5601c451eddfed904de8 100644
--- a/ppapi/thunk/ppb_websocket_api.h
+++ b/ppapi/thunk/ppb_websocket_api.h
@@ -6,7 +6,7 @@
#define PPAPI_THUNK_WEBSOCKET_API_H_
#include "ppapi/c/pp_completion_callback.h"
-#include "ppapi/c/dev/ppb_websocket_dev.h"
+#include "ppapi/c/ppb_websocket.h"
namespace ppapi {
namespace thunk {
@@ -31,10 +31,8 @@ class PPB_WebSocket_API {
virtual PP_Bool GetCloseWasClean() = 0;
virtual PP_Var GetExtensions() = 0;
virtual PP_Var GetProtocol() = 0;
- virtual PP_WebSocketReadyState_Dev GetReadyState() = 0;
+ virtual PP_WebSocketReadyState GetReadyState() = 0;
virtual PP_Var GetURL() = 0;
- virtual PP_Bool SetBinaryType(PP_WebSocketBinaryType_Dev) = 0;
- virtual PP_WebSocketBinaryType_Dev GetBinaryType() = 0;
};
} // namespace thunk

Powered by Google App Engine
This is Rietveld 408576698