Chromium Code Reviews
[email protected] (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

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

Issue 16667002: Introduce PPB_TCPSocket_Dev. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 6 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 | « webkit/plugins/ppapi/plugin_module.cc ('k') | webkit/plugins/ppapi/resource_creation_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_RESOURCE_CREATION_IMPL_H_ 5 #ifndef WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_
6 #define WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ 6 #define WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "ppapi/thunk/resource_creation_api.h" 10 #include "ppapi/thunk/resource_creation_api.h"
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 PP_InputEvent_MouseButton mouse_button, 92 PP_InputEvent_MouseButton mouse_button,
93 const PP_Point* mouse_position, 93 const PP_Point* mouse_position,
94 int32_t click_count, 94 int32_t click_count,
95 const PP_Point* mouse_movement) OVERRIDE; 95 const PP_Point* mouse_movement) OVERRIDE;
96 virtual PP_Resource CreateNetAddressFromIPv4Address( 96 virtual PP_Resource CreateNetAddressFromIPv4Address(
97 PP_Instance instance, 97 PP_Instance instance,
98 const PP_NetAddress_IPv4_Dev* ipv4_addr) OVERRIDE; 98 const PP_NetAddress_IPv4_Dev* ipv4_addr) OVERRIDE;
99 virtual PP_Resource CreateNetAddressFromIPv6Address( 99 virtual PP_Resource CreateNetAddressFromIPv6Address(
100 PP_Instance instance, 100 PP_Instance instance,
101 const PP_NetAddress_IPv6_Dev* ipv6_addr) OVERRIDE; 101 const PP_NetAddress_IPv6_Dev* ipv6_addr) OVERRIDE;
102 virtual PP_Resource CreateNetAddressFromNetAddressPrivate(
103 PP_Instance instance,
104 const PP_NetAddress_Private& private_addr) OVERRIDE;
102 virtual PP_Resource CreateTouchInputEvent( 105 virtual PP_Resource CreateTouchInputEvent(
103 PP_Instance instance, 106 PP_Instance instance,
104 PP_InputEvent_Type type, 107 PP_InputEvent_Type type,
105 PP_TimeTicks time_stamp, 108 PP_TimeTicks time_stamp,
106 uint32_t modifiers) OVERRIDE; 109 uint32_t modifiers) OVERRIDE;
107 virtual PP_Resource CreateNetworkMonitor( 110 virtual PP_Resource CreateNetworkMonitor(
108 PP_Instance instance, 111 PP_Instance instance,
109 PPB_NetworkMonitor_Callback callback, 112 PPB_NetworkMonitor_Callback callback,
110 void* user_data) OVERRIDE; 113 void* user_data) OVERRIDE;
111 virtual PP_Resource CreateResourceArray(PP_Instance instance, 114 virtual PP_Resource CreateResourceArray(PP_Instance instance,
112 const PP_Resource elements[], 115 const PP_Resource elements[],
113 uint32_t size) OVERRIDE; 116 uint32_t size) OVERRIDE;
114 virtual PP_Resource CreateScrollbar(PP_Instance instance, 117 virtual PP_Resource CreateScrollbar(PP_Instance instance,
115 PP_Bool vertical) OVERRIDE; 118 PP_Bool vertical) OVERRIDE;
116 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; 119 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE;
117 virtual PP_Resource CreateTCPServerSocketPrivate( 120 virtual PP_Resource CreateTCPServerSocketPrivate(
118 PP_Instance instance) OVERRIDE; 121 PP_Instance instance) OVERRIDE;
122 virtual PP_Resource CreateTCPSocket(PP_Instance instance) OVERRIDE;
119 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; 123 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE;
120 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; 124 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE;
121 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; 125 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE;
122 virtual PP_Resource CreateVideoDecoder( 126 virtual PP_Resource CreateVideoDecoder(
123 PP_Instance instance, 127 PP_Instance instance,
124 PP_Resource graphics3d_id, 128 PP_Resource graphics3d_id,
125 PP_VideoDecoder_Profile profile) OVERRIDE; 129 PP_VideoDecoder_Profile profile) OVERRIDE;
126 virtual PP_Resource CreateVideoDestination( 130 virtual PP_Resource CreateVideoDestination(
127 PP_Instance instance) OVERRIDE; 131 PP_Instance instance) OVERRIDE;
128 virtual PP_Resource CreateVideoSource( 132 virtual PP_Resource CreateVideoSource(
129 PP_Instance instance) OVERRIDE; 133 PP_Instance instance) OVERRIDE;
130 virtual PP_Resource CreateWheelInputEvent( 134 virtual PP_Resource CreateWheelInputEvent(
131 PP_Instance instance, 135 PP_Instance instance,
132 PP_TimeTicks time_stamp, 136 PP_TimeTicks time_stamp,
133 uint32_t modifiers, 137 uint32_t modifiers,
134 const PP_FloatPoint* wheel_delta, 138 const PP_FloatPoint* wheel_delta,
135 const PP_FloatPoint* wheel_ticks, 139 const PP_FloatPoint* wheel_ticks,
136 PP_Bool scroll_by_page) OVERRIDE; 140 PP_Bool scroll_by_page) OVERRIDE;
137 virtual PP_Resource CreateX509CertificatePrivate( 141 virtual PP_Resource CreateX509CertificatePrivate(
138 PP_Instance instance) OVERRIDE; 142 PP_Instance instance) OVERRIDE;
139 143
140 private: 144 private:
141 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); 145 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl);
142 }; 146 };
143 147
144 } // namespace ppapi 148 } // namespace ppapi
145 } // namespace webkit 149 } // namespace webkit
146 150
147 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ 151 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/plugin_module.cc ('k') | webkit/plugins/ppapi/resource_creation_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698