| 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_PPAPI_PLUGIN_INSTANCE_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
| 6 #define WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 // already in fullscreen mode). | 288 // already in fullscreen mode). |
| 289 bool SetFullscreen(bool fullscreen); | 289 bool SetFullscreen(bool fullscreen); |
| 290 | 290 |
| 291 // Implementation of PPB_Flash. | 291 // Implementation of PPB_Flash. |
| 292 int32_t Navigate(PPB_URLRequestInfo_Impl* request, | 292 int32_t Navigate(PPB_URLRequestInfo_Impl* request, |
| 293 const char* target, | 293 const char* target, |
| 294 bool from_user_action); | 294 bool from_user_action); |
| 295 bool IsRectTopmost(const gfx::Rect& rect); | 295 bool IsRectTopmost(const gfx::Rect& rect); |
| 296 | 296 |
| 297 // Implementation of PPB_Gamepad. | 297 // Implementation of PPB_Gamepad. |
| 298 void SampleGamepads(PP_Instance instance, PP_GamepadsData_Dev* data) | 298 void SampleGamepads(PP_Instance instance, PP_GamepadsSampleData_Dev* data) |
| 299 OVERRIDE; | 299 OVERRIDE; |
| 300 | 300 |
| 301 // Implementation of PPP_Messaging. | 301 // Implementation of PPP_Messaging. |
| 302 void HandleMessage(PP_Var message); | 302 void HandleMessage(PP_Var message); |
| 303 | 303 |
| 304 PluginDelegate::PlatformContext3D* CreateContext3D(); | 304 PluginDelegate::PlatformContext3D* CreateContext3D(); |
| 305 | 305 |
| 306 // Returns true iff the plugin is a full-page plugin (i.e. not in an iframe | 306 // Returns true iff the plugin is a full-page plugin (i.e. not in an iframe |
| 307 // or embedded in a page). | 307 // or embedded in a page). |
| 308 bool IsFullPagePlugin() const; | 308 bool IsFullPagePlugin() const; |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 | 619 |
| 620 PP_CompletionCallback lock_mouse_callback_; | 620 PP_CompletionCallback lock_mouse_callback_; |
| 621 | 621 |
| 622 DISALLOW_COPY_AND_ASSIGN(PluginInstance); | 622 DISALLOW_COPY_AND_ASSIGN(PluginInstance); |
| 623 }; | 623 }; |
| 624 | 624 |
| 625 } // namespace ppapi | 625 } // namespace ppapi |
| 626 } // namespace webkit | 626 } // namespace webkit |
| 627 | 627 |
| 628 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 628 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
| OLD | NEW |