| 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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 PP_PrivateFontCharset charset) OVERRIDE; | 169 PP_PrivateFontCharset charset) OVERRIDE; |
| 170 virtual PP_Resource CreateFlashMenu(PP_Instance instance, | 170 virtual PP_Resource CreateFlashMenu(PP_Instance instance, |
| 171 const PP_Flash_Menu* menu_data) OVERRIDE; | 171 const PP_Flash_Menu* menu_data) OVERRIDE; |
| 172 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE; | 172 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE; |
| 173 virtual PP_Resource CreatePlatformVerificationPrivate( | 173 virtual PP_Resource CreatePlatformVerificationPrivate( |
| 174 PP_Instance instance) OVERRIDE; | 174 PP_Instance instance) OVERRIDE; |
| 175 virtual PP_Resource CreateScrollbar(PP_Instance instance, | 175 virtual PP_Resource CreateScrollbar(PP_Instance instance, |
| 176 PP_Bool vertical) OVERRIDE; | 176 PP_Bool vertical) OVERRIDE; |
| 177 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; | 177 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; |
| 178 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; | 178 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; |
| 179 virtual PP_Resource CreateVideoDecoder( | 179 virtual PP_Resource CreateVideoDecoderDev( |
| 180 PP_Instance instance, | 180 PP_Instance instance, |
| 181 PP_Resource context3d_id, | 181 PP_Resource context3d_id, |
| 182 PP_VideoDecoder_Profile profile) OVERRIDE; | 182 PP_VideoDecoder_Profile profile) OVERRIDE; |
| 183 #endif // !defined(OS_NACL) | 183 #endif // !defined(OS_NACL) |
| 184 | 184 |
| 185 virtual bool Send(IPC::Message* msg) OVERRIDE; | 185 virtual bool Send(IPC::Message* msg) OVERRIDE; |
| 186 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 186 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
| 187 | 187 |
| 188 private: | 188 private: |
| 189 Connection GetConnection(); | 189 Connection GetConnection(); |
| 190 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 190 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
| 191 }; | 191 }; |
| 192 | 192 |
| 193 } // namespace proxy | 193 } // namespace proxy |
| 194 } // namespace ppapi | 194 } // namespace ppapi |
| 195 | 195 |
| 196 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 196 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
| OLD | NEW |