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

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

Issue 8571002: WebSocket Pepper API: in process API base implementation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: test name was wrong Created 9 years, 1 month 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/shared_impl/function_group_base.h" 10 #include "ppapi/shared_impl/function_group_base.h"
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 virtual PP_Resource CreateURLRequestInfo( 109 virtual PP_Resource CreateURLRequestInfo(
110 PP_Instance instance, 110 PP_Instance instance,
111 const ::ppapi::PPB_URLRequestInfo_Data& data) OVERRIDE; 111 const ::ppapi::PPB_URLRequestInfo_Data& data) OVERRIDE;
112 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; 112 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE;
113 virtual PP_Resource CreateVideoDecoder( 113 virtual PP_Resource CreateVideoDecoder(
114 PP_Instance instance, 114 PP_Instance instance,
115 PP_Resource context3d_id, 115 PP_Resource context3d_id,
116 PP_VideoDecoder_Profile profile) OVERRIDE; 116 PP_VideoDecoder_Profile profile) OVERRIDE;
117 virtual PP_Resource CreateVideoLayer(PP_Instance instance, 117 virtual PP_Resource CreateVideoLayer(PP_Instance instance,
118 PP_VideoLayerMode_Dev mode) OVERRIDE; 118 PP_VideoLayerMode_Dev mode) OVERRIDE;
119 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE;
119 virtual PP_Resource CreateWheelInputEvent( 120 virtual PP_Resource CreateWheelInputEvent(
120 PP_Instance instance, 121 PP_Instance instance,
121 PP_TimeTicks time_stamp, 122 PP_TimeTicks time_stamp,
122 uint32_t modifiers, 123 uint32_t modifiers,
123 const PP_FloatPoint* wheel_delta, 124 const PP_FloatPoint* wheel_delta,
124 const PP_FloatPoint* wheel_ticks, 125 const PP_FloatPoint* wheel_ticks,
125 PP_Bool scroll_by_page) OVERRIDE; 126 PP_Bool scroll_by_page) OVERRIDE;
126 127
127 private: 128 private:
128 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); 129 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl);
129 }; 130 };
130 131
131 } // namespace ppapi 132 } // namespace ppapi
132 } // namespace webkit 133 } // namespace webkit
133 134
134 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ 135 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698