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

Unified Diff: webkit/plugins/ppapi/plugin_delegate.h

Issue 10735056: AllowBroadcast() is exposed to NaCl. (Closed) Base URL: http://git.chromium.org/chromium/src.git@udp_broadcast
Patch Set: Deleted callbacks. Created 8 years, 4 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: webkit/plugins/ppapi/plugin_delegate.h
diff --git a/webkit/plugins/ppapi/plugin_delegate.h b/webkit/plugins/ppapi/plugin_delegate.h
index 7418070f3b258666a5c55c2e9cacb4e6c8e37969..fc9c3603298bd2ddc2c5e74f0ede80ce6c255744 100644
--- a/webkit/plugins/ppapi/plugin_delegate.h
+++ b/webkit/plugins/ppapi/plugin_delegate.h
@@ -9,8 +9,8 @@
#include <vector>
#include "base/callback.h"
-#include "base/message_loop_proxy.h"
#include "base/memory/ref_counted.h"
+#include "base/message_loop_proxy.h"
#include "base/platform_file.h"
#include "base/shared_memory.h"
#include "base/sync_socket.h"
@@ -26,6 +26,7 @@
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_stdint.h"
#include "ppapi/c/private/ppb_flash.h"
+#include "ppapi/c/private/ppb_udp_socket_private.h"
#include "ppapi/shared_impl/dir_contents.h"
#include "ui/gfx/size.h"
#include "webkit/fileapi/file_system_types.h"
@@ -526,6 +527,10 @@ class PluginDelegate {
// For PPB_UDPSocket_Private.
virtual uint32 UDPSocketCreate() = 0;
+ virtual void UDPSocketSetSocketFeature(PPB_UDPSocket_Private_Impl* socket,
+ uint32 socket_id,
+ PP_UDPSocketFeature_Private name,
+ PP_Var value) = 0;
virtual void UDPSocketBind(PPB_UDPSocket_Private_Impl* socket,
uint32 socket_id,
const PP_NetAddress_Private& addr) = 0;

Powered by Google App Engine
This is Rietveld 408576698