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