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

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

Issue 11441012: PPB_UDPSocket_Private is switched to the new Pepper proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync. Created 7 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
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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 void* user_data) OVERRIDE; 98 void* user_data) OVERRIDE;
99 virtual PP_Resource CreateResourceArray(PP_Instance instance, 99 virtual PP_Resource CreateResourceArray(PP_Instance instance,
100 const PP_Resource elements[], 100 const PP_Resource elements[],
101 uint32_t size) OVERRIDE; 101 uint32_t size) OVERRIDE;
102 virtual PP_Resource CreateScrollbar(PP_Instance instance, 102 virtual PP_Resource CreateScrollbar(PP_Instance instance,
103 PP_Bool vertical) OVERRIDE; 103 PP_Bool vertical) OVERRIDE;
104 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; 104 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE;
105 virtual PP_Resource CreateTCPServerSocketPrivate( 105 virtual PP_Resource CreateTCPServerSocketPrivate(
106 PP_Instance instance) OVERRIDE; 106 PP_Instance instance) OVERRIDE;
107 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; 107 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE;
108
109 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE;
110 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; 108 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE;
111 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; 109 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE;
112 virtual PP_Resource CreateVideoDecoder( 110 virtual PP_Resource CreateVideoDecoder(
113 PP_Instance instance, 111 PP_Instance instance,
114 PP_Resource graphics3d_id, 112 PP_Resource graphics3d_id,
115 PP_VideoDecoder_Profile profile) OVERRIDE; 113 PP_VideoDecoder_Profile profile) OVERRIDE;
116 virtual PP_Resource CreateWheelInputEvent( 114 virtual PP_Resource CreateWheelInputEvent(
117 PP_Instance instance, 115 PP_Instance instance,
118 PP_TimeTicks time_stamp, 116 PP_TimeTicks time_stamp,
119 uint32_t modifiers, 117 uint32_t modifiers,
120 const PP_FloatPoint* wheel_delta, 118 const PP_FloatPoint* wheel_delta,
121 const PP_FloatPoint* wheel_ticks, 119 const PP_FloatPoint* wheel_ticks,
122 PP_Bool scroll_by_page) OVERRIDE; 120 PP_Bool scroll_by_page) OVERRIDE;
123 virtual PP_Resource CreateX509CertificatePrivate( 121 virtual PP_Resource CreateX509CertificatePrivate(
124 PP_Instance instance) OVERRIDE; 122 PP_Instance instance) OVERRIDE;
125 123
126 private: 124 private:
127 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); 125 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl);
128 }; 126 };
129 127
130 } // namespace ppapi 128 } // namespace ppapi
131 } // namespace webkit 129 } // namespace webkit
132 130
133 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ 131 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppb_udp_socket_private_impl.cc ('k') | webkit/plugins/ppapi/resource_creation_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698