| 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 virtual PP_Resource CreateFileChooser( | 110 virtual PP_Resource CreateFileChooser( |
| 111 PP_Instance instance, | 111 PP_Instance instance, |
| 112 PP_FileChooserMode_Dev mode, | 112 PP_FileChooserMode_Dev mode, |
| 113 const char* accept_types) OVERRIDE; | 113 const char* accept_types) OVERRIDE; |
| 114 virtual PP_Resource CreateFlashDeviceID(PP_Instance instance) OVERRIDE; | 114 virtual PP_Resource CreateFlashDeviceID(PP_Instance instance) OVERRIDE; |
| 115 virtual PP_Resource CreateFlashMenu(PP_Instance instance, | 115 virtual PP_Resource CreateFlashMenu(PP_Instance instance, |
| 116 const PP_Flash_Menu* menu_data) OVERRIDE; | 116 const PP_Flash_Menu* menu_data) OVERRIDE; |
| 117 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE; | 117 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE; |
| 118 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, | 118 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, |
| 119 const PP_Size& size, | 119 const PP_Size& size, |
| 120 PP_Bool is_always_opaque) OVERRIDE; | 120 PP_Bool is_always_opaque, |
| 121 float scale) OVERRIDE; |
| 121 virtual PP_Resource CreateGraphics3D(PP_Instance instance, | 122 virtual PP_Resource CreateGraphics3D(PP_Instance instance, |
| 122 PP_Resource share_context, | 123 PP_Resource share_context, |
| 123 const int32_t* attrib_list) OVERRIDE; | 124 const int32_t* attrib_list) OVERRIDE; |
| 124 virtual PP_Resource CreateGraphics3DRaw( | 125 virtual PP_Resource CreateGraphics3DRaw( |
| 125 PP_Instance instance, | 126 PP_Instance instance, |
| 126 PP_Resource share_context, | 127 PP_Resource share_context, |
| 127 const int32_t* attrib_list) OVERRIDE; | 128 const int32_t* attrib_list) OVERRIDE; |
| 128 virtual PP_Resource CreateHostResolverPrivate(PP_Instance instance) OVERRIDE; | 129 virtual PP_Resource CreateHostResolverPrivate(PP_Instance instance) OVERRIDE; |
| 129 virtual PP_Resource CreateNetworkMonitor( | 130 virtual PP_Resource CreateNetworkMonitor( |
| 130 PP_Instance instance, | 131 PP_Instance instance, |
| (...skipping 22 matching lines...) Expand all Loading... |
| 153 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 154 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
| 154 | 155 |
| 155 private: | 156 private: |
| 156 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 157 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
| 157 }; | 158 }; |
| 158 | 159 |
| 159 } // namespace proxy | 160 } // namespace proxy |
| 160 } // namespace ppapi | 161 } // namespace ppapi |
| 161 | 162 |
| 162 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 163 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
| OLD | NEW |