| OLD | NEW |
| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 const PP_Size* size, | 110 const PP_Size* size, |
| 111 PP_Bool is_always_opaque) OVERRIDE; | 111 PP_Bool is_always_opaque) OVERRIDE; |
| 112 virtual PP_Resource CreateGraphics3D(PP_Instance instance, | 112 virtual PP_Resource CreateGraphics3D(PP_Instance instance, |
| 113 PP_Resource share_context, | 113 PP_Resource share_context, |
| 114 const int32_t* attrib_list) OVERRIDE; | 114 const int32_t* attrib_list) OVERRIDE; |
| 115 virtual PP_Resource CreateGraphics3DRaw( | 115 virtual PP_Resource CreateGraphics3DRaw( |
| 116 PP_Instance instance, | 116 PP_Instance instance, |
| 117 PP_Resource share_context, | 117 PP_Resource share_context, |
| 118 const int32_t* attrib_list) OVERRIDE; | 118 const int32_t* attrib_list) OVERRIDE; |
| 119 virtual PP_Resource CreateHostResolverPrivate(PP_Instance instance) OVERRIDE; | 119 virtual PP_Resource CreateHostResolverPrivate(PP_Instance instance) OVERRIDE; |
| 120 virtual PP_Resource CreateImageData(PP_Instance instance, | 120 virtual PP_Resource CreateImageDataPlatform(PP_Instance instance, |
| 121 PP_ImageDataFormat format, | 121 PP_ImageDataFormat format, |
| 122 const PP_Size* size, | 122 const PP_Size* size, |
| 123 PP_Bool init_to_zero) OVERRIDE; | 123 PP_Bool init_to_zero) OVERRIDE; |
| 124 virtual PP_Resource CreateImageDataNaCl(PP_Instance instance, | 124 virtual PP_Resource CreateImageDataSimple(PP_Instance instance, |
| 125 PP_ImageDataFormat format, | 125 PP_ImageDataFormat format, |
| 126 const PP_Size* size, | 126 const PP_Size* size, |
| 127 PP_Bool init_to_zero) OVERRIDE; | 127 PP_Bool init_to_zero) OVERRIDE; |
| 128 virtual PP_Resource CreateNetworkMonitor( | 128 virtual PP_Resource CreateNetworkMonitor( |
| 129 PP_Instance instance, | 129 PP_Instance instance, |
| 130 PPB_NetworkMonitor_Callback callback, | 130 PPB_NetworkMonitor_Callback callback, |
| 131 void* user_data) OVERRIDE; | 131 void* user_data) OVERRIDE; |
| 132 virtual PP_Resource CreatePrinting(PP_Instance) OVERRIDE; | 132 virtual PP_Resource CreatePrinting(PP_Instance) OVERRIDE; |
| 133 virtual PP_Resource CreateTCPServerSocketPrivate( | 133 virtual PP_Resource CreateTCPServerSocketPrivate( |
| 134 PP_Instance instance) OVERRIDE; | 134 PP_Instance instance) OVERRIDE; |
| 135 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; | 135 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 136 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; | 136 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 137 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; | 137 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 | 170 |
| 171 private: | 171 private: |
| 172 Connection GetConnection(); | 172 Connection GetConnection(); |
| 173 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 173 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
| 174 }; | 174 }; |
| 175 | 175 |
| 176 } // namespace proxy | 176 } // namespace proxy |
| 177 } // namespace ppapi | 177 } // namespace ppapi |
| 178 | 178 |
| 179 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 179 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
| OLD | NEW |