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

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

Issue 10944005: Pepper WebSocket API: Implement new design Chrome IPC (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nits Created 8 years, 2 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 PP_Instance instance) OVERRIDE; 114 PP_Instance instance) OVERRIDE;
115 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; 115 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE;
116 116
117 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; 117 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE;
118 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; 118 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE;
119 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; 119 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE;
120 virtual PP_Resource CreateVideoDecoder( 120 virtual PP_Resource CreateVideoDecoder(
121 PP_Instance instance, 121 PP_Instance instance,
122 PP_Resource graphics3d_id, 122 PP_Resource graphics3d_id,
123 PP_VideoDecoder_Profile profile) OVERRIDE; 123 PP_VideoDecoder_Profile profile) OVERRIDE;
124 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE;
125 virtual PP_Resource CreateWheelInputEvent( 124 virtual PP_Resource CreateWheelInputEvent(
126 PP_Instance instance, 125 PP_Instance instance,
127 PP_TimeTicks time_stamp, 126 PP_TimeTicks time_stamp,
128 uint32_t modifiers, 127 uint32_t modifiers,
129 const PP_FloatPoint* wheel_delta, 128 const PP_FloatPoint* wheel_delta,
130 const PP_FloatPoint* wheel_ticks, 129 const PP_FloatPoint* wheel_ticks,
131 PP_Bool scroll_by_page) OVERRIDE; 130 PP_Bool scroll_by_page) OVERRIDE;
132 virtual PP_Resource CreateX509CertificatePrivate( 131 virtual PP_Resource CreateX509CertificatePrivate(
133 PP_Instance instance) OVERRIDE; 132 PP_Instance instance) OVERRIDE;
134 133
135 private: 134 private:
136 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); 135 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl);
137 }; 136 };
138 137
139 } // namespace ppapi 138 } // namespace ppapi
140 } // namespace webkit 139 } // namespace webkit
141 140
142 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ 141 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppb_websocket_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