Index: content/renderer/pepper/mock_plugin_delegate.cc |
=================================================================== |
--- content/renderer/pepper/mock_plugin_delegate.cc (revision 214249) |
+++ content/renderer/pepper/mock_plugin_delegate.cc (working copy) |
@@ -42,9 +42,6 @@ |
PepperPluginInstanceImpl* instance) { |
} |
-void MockPluginDelegate::PluginCrashed(PepperPluginInstanceImpl* instance) { |
-} |
- |
void MockPluginDelegate::InstanceCreated(PepperPluginInstanceImpl* instance) { |
} |
@@ -62,84 +59,6 @@ |
return scoped_refptr<base::MessageLoopProxy>(); |
} |
-uint32 MockPluginDelegate::TCPSocketCreate() { |
- return 0; |
-} |
- |
-void MockPluginDelegate::TCPSocketConnect(PPB_TCPSocket_Private_Impl* socket, |
- uint32 socket_id, |
- const std::string& host, |
- uint16_t port) { |
-} |
- |
-void MockPluginDelegate::TCPSocketConnectWithNetAddress( |
- PPB_TCPSocket_Private_Impl* socket, |
- uint32 socket_id, |
- const PP_NetAddress_Private& addr) { |
-} |
- |
-void MockPluginDelegate::TCPSocketSSLHandshake( |
- uint32 socket_id, |
- const std::string& server_name, |
- uint16_t server_port, |
- const std::vector<std::vector<char> >& trusted_certs, |
- const std::vector<std::vector<char> >& untrusted_certs) { |
-} |
- |
-void MockPluginDelegate::TCPSocketRead(uint32 socket_id, |
- int32_t bytes_to_read) { |
-} |
- |
-void MockPluginDelegate::TCPSocketWrite(uint32 socket_id, |
- const std::string& buffer) { |
-} |
- |
-void MockPluginDelegate::TCPSocketSetOption( |
- uint32 socket_id, |
- PP_TCPSocket_Option name, |
- const ::ppapi::SocketOptionData& value) { |
-} |
- |
-void MockPluginDelegate::TCPSocketDisconnect(uint32 socket_id) { |
-} |
- |
-void MockPluginDelegate::RegisterTCPSocket(PPB_TCPSocket_Private_Impl* socket, |
- uint32 socket_id) { |
-} |
- |
-void MockPluginDelegate::TCPServerSocketListen( |
- PP_Resource socket_resource, |
- const PP_NetAddress_Private& addr, |
- int32_t backlog) { |
-} |
- |
-void MockPluginDelegate::TCPServerSocketAccept(uint32 server_socket_id) { |
-} |
- |
-void MockPluginDelegate::TCPServerSocketStopListening( |
- PP_Resource socket_resource, |
- uint32 socket_id) { |
-} |
- |
-bool MockPluginDelegate::LockMouse(PepperPluginInstanceImpl* instance) { |
- return false; |
-} |
- |
-void MockPluginDelegate::UnlockMouse(PepperPluginInstanceImpl* instance) { |
-} |
- |
-bool MockPluginDelegate::IsMouseLocked(PepperPluginInstanceImpl* instance) { |
- return false; |
-} |
- |
-void MockPluginDelegate::DidChangeCursor(PepperPluginInstanceImpl* instance, |
- const WebKit::WebCursorInfo& cursor) { |
-} |
- |
-void MockPluginDelegate::DidReceiveMouseEvent( |
- PepperPluginInstanceImpl* instance) { |
-} |
- |
void MockPluginDelegate::SampleGamepads(WebKit::WebGamepads* data) { |
data->length = 0; |
} |