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

Side by Side Diff: ppapi/proxy/resource_creation_proxy.h

Issue 9455092: HostResolver is exposed to plugin. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Sync. Created 8 years, 9 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
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 PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ 5 #ifndef PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_
6 #define PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ 6 #define PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 virtual PP_Resource CreateFlashNetConnector(PP_Instance instance) OVERRIDE; 74 virtual PP_Resource CreateFlashNetConnector(PP_Instance instance) OVERRIDE;
75 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, 75 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance,
76 const PP_Size& size, 76 const PP_Size& size,
77 PP_Bool is_always_opaque) OVERRIDE; 77 PP_Bool is_always_opaque) OVERRIDE;
78 virtual PP_Resource CreateGraphics3D(PP_Instance instance, 78 virtual PP_Resource CreateGraphics3D(PP_Instance instance,
79 PP_Resource share_context, 79 PP_Resource share_context,
80 const int32_t* attrib_list) OVERRIDE; 80 const int32_t* attrib_list) OVERRIDE;
81 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, 81 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance,
82 PP_Resource share_context, 82 PP_Resource share_context,
83 const int32_t* attrib_list) OVERRIDE; 83 const int32_t* attrib_list) OVERRIDE;
84 virtual PP_Resource CreateHostResolverPrivate(PP_Instance instance) OVERRIDE;
84 virtual PP_Resource CreateImageData(PP_Instance instance, 85 virtual PP_Resource CreateImageData(PP_Instance instance,
85 PP_ImageDataFormat format, 86 PP_ImageDataFormat format,
86 const PP_Size& size, 87 const PP_Size& size,
87 PP_Bool init_to_zero) OVERRIDE; 88 PP_Bool init_to_zero) OVERRIDE;
88 virtual PP_Resource CreateKeyboardInputEvent( 89 virtual PP_Resource CreateKeyboardInputEvent(
89 PP_Instance instance, 90 PP_Instance instance,
90 PP_InputEvent_Type type, 91 PP_InputEvent_Type type,
91 PP_TimeTicks time_stamp, 92 PP_TimeTicks time_stamp,
92 uint32_t modifiers, 93 uint32_t modifiers,
93 uint32_t key_code, 94 uint32_t key_code,
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; 142 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
142 143
143 private: 144 private:
144 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); 145 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy);
145 }; 146 };
146 147
147 } // namespace proxy 148 } // namespace proxy
148 } // namespace ppapi 149 } // namespace ppapi
149 150
150 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ 151 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698