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

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

Issue 10913257: Convert url request info to new proxy API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 8 years, 3 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 uint32_t size) OVERRIDE; 109 uint32_t size) OVERRIDE;
110 virtual PP_Resource CreateScrollbar(PP_Instance instance, 110 virtual PP_Resource CreateScrollbar(PP_Instance instance,
111 PP_Bool vertical) OVERRIDE; 111 PP_Bool vertical) OVERRIDE;
112 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; 112 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE;
113 virtual PP_Resource CreateTCPServerSocketPrivate( 113 virtual PP_Resource CreateTCPServerSocketPrivate(
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 CreateURLRequestInfo(
120 PP_Instance instance,
121 const ::ppapi::PPB_URLRequestInfo_Data& data) OVERRIDE;
122 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; 119 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE;
123 virtual PP_Resource CreateVideoDecoder( 120 virtual PP_Resource CreateVideoDecoder(
124 PP_Instance instance, 121 PP_Instance instance,
125 PP_Resource graphics3d_id, 122 PP_Resource graphics3d_id,
126 PP_VideoDecoder_Profile profile) OVERRIDE; 123 PP_VideoDecoder_Profile profile) OVERRIDE;
127 virtual PP_Resource CreateVideoLayer(PP_Instance instance, 124 virtual PP_Resource CreateVideoLayer(PP_Instance instance,
128 PP_VideoLayerMode_Dev mode) OVERRIDE; 125 PP_VideoLayerMode_Dev mode) OVERRIDE;
129 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; 126 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE;
130 virtual PP_Resource CreateWheelInputEvent( 127 virtual PP_Resource CreateWheelInputEvent(
131 PP_Instance instance, 128 PP_Instance instance,
132 PP_TimeTicks time_stamp, 129 PP_TimeTicks time_stamp,
133 uint32_t modifiers, 130 uint32_t modifiers,
134 const PP_FloatPoint* wheel_delta, 131 const PP_FloatPoint* wheel_delta,
135 const PP_FloatPoint* wheel_ticks, 132 const PP_FloatPoint* wheel_ticks,
136 PP_Bool scroll_by_page) OVERRIDE; 133 PP_Bool scroll_by_page) OVERRIDE;
137 virtual PP_Resource CreateX509CertificatePrivate( 134 virtual PP_Resource CreateX509CertificatePrivate(
138 PP_Instance instance) OVERRIDE; 135 PP_Instance instance) OVERRIDE;
139 136
140 private: 137 private:
141 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); 138 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl);
142 }; 139 };
143 140
144 } // namespace ppapi 141 } // namespace ppapi
145 } // namespace webkit 142 } // namespace webkit
146 143
147 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ 144 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppb_url_request_info_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