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

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

Issue 11411357: PPB_HostResolver_Private is switched to the new Pepper proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: s/SendReply/SendResolveReply, s/SendError/SendResolveError 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 PP_PrivateFontCharset charset) OVERRIDE; 46 PP_PrivateFontCharset charset) OVERRIDE;
47 virtual PP_Resource CreateFlashMenu(PP_Instance instance, 47 virtual PP_Resource CreateFlashMenu(PP_Instance instance,
48 const PP_Flash_Menu* menu_data) OVERRIDE; 48 const PP_Flash_Menu* menu_data) OVERRIDE;
49 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE; 49 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE;
50 virtual PP_Resource CreateGraphics3D(PP_Instance instance, 50 virtual PP_Resource CreateGraphics3D(PP_Instance instance,
51 PP_Resource share_context, 51 PP_Resource share_context,
52 const int32_t* attrib_list) OVERRIDE; 52 const int32_t* attrib_list) OVERRIDE;
53 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, 53 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance,
54 PP_Resource share_context, 54 PP_Resource share_context,
55 const int32_t* attrib_list) OVERRIDE; 55 const int32_t* attrib_list) OVERRIDE;
56 virtual PP_Resource CreateHostResolverPrivate(PP_Instance instance) OVERRIDE;
57 virtual PP_Resource CreateImageData(PP_Instance instance, 56 virtual PP_Resource CreateImageData(PP_Instance instance,
58 PP_ImageDataFormat format, 57 PP_ImageDataFormat format,
59 const PP_Size& size, 58 const PP_Size& size,
60 PP_Bool init_to_zero) OVERRIDE; 59 PP_Bool init_to_zero) OVERRIDE;
61 virtual PP_Resource CreateImageDataNaCl(PP_Instance instance, 60 virtual PP_Resource CreateImageDataNaCl(PP_Instance instance,
62 PP_ImageDataFormat format, 61 PP_ImageDataFormat format,
63 const PP_Size& size, 62 const PP_Size& size,
64 PP_Bool init_to_zero) OVERRIDE; 63 PP_Bool init_to_zero) OVERRIDE;
65 virtual PP_Resource CreateIMEInputEvent(PP_Instance instance, 64 virtual PP_Resource CreateIMEInputEvent(PP_Instance instance,
66 PP_InputEvent_Type type, 65 PP_InputEvent_Type type,
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 PP_Instance instance) OVERRIDE; 121 PP_Instance instance) OVERRIDE;
123 122
124 private: 123 private:
125 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); 124 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl);
126 }; 125 };
127 126
128 } // namespace ppapi 127 } // namespace ppapi
129 } // namespace webkit 128 } // namespace webkit
130 129
131 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ 130 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698