| 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 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 virtual PP_Resource CreateResourceArray(PP_Instance instance, | 99 virtual PP_Resource CreateResourceArray(PP_Instance instance, |
| 100 const PP_Resource elements[], | 100 const PP_Resource elements[], |
| 101 uint32_t size) OVERRIDE; | 101 uint32_t size) OVERRIDE; |
| 102 virtual PP_Resource CreateScrollbar(PP_Instance instance, | 102 virtual PP_Resource CreateScrollbar(PP_Instance instance, |
| 103 PP_Bool vertical) OVERRIDE; | 103 PP_Bool vertical) OVERRIDE; |
| 104 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; | 104 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; |
| 105 virtual PP_Resource CreateTCPServerSocketPrivate( | 105 virtual PP_Resource CreateTCPServerSocketPrivate( |
| 106 PP_Instance instance) OVERRIDE; | 106 PP_Instance instance) OVERRIDE; |
| 107 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; | 107 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 108 | 108 |
| 109 virtual PP_Resource CreateTransport(PP_Instance instance, | |
| 110 const char* name, | |
| 111 PP_TransportType type) OVERRIDE; | |
| 112 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; | 109 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 113 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; | 110 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; |
| 114 virtual PP_Resource CreateURLRequestInfo( | 111 virtual PP_Resource CreateURLRequestInfo( |
| 115 PP_Instance instance, | 112 PP_Instance instance, |
| 116 const ::ppapi::PPB_URLRequestInfo_Data& data) OVERRIDE; | 113 const ::ppapi::PPB_URLRequestInfo_Data& data) OVERRIDE; |
| 117 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; | 114 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; |
| 118 virtual PP_Resource CreateVideoDecoder( | 115 virtual PP_Resource CreateVideoDecoder( |
| 119 PP_Instance instance, | 116 PP_Instance instance, |
| 120 PP_Resource graphics3d_id, | 117 PP_Resource graphics3d_id, |
| 121 PP_VideoDecoder_Profile profile) OVERRIDE; | 118 PP_VideoDecoder_Profile profile) OVERRIDE; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 133 PP_Instance instance) OVERRIDE; | 130 PP_Instance instance) OVERRIDE; |
| 134 | 131 |
| 135 private: | 132 private: |
| 136 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 133 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
| 137 }; | 134 }; |
| 138 | 135 |
| 139 } // namespace ppapi | 136 } // namespace ppapi |
| 140 } // namespace webkit | 137 } // namespace webkit |
| 141 | 138 |
| 142 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 139 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
| OLD | NEW |