| 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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 PP_Bool final_result) OVERRIDE; | 361 PP_Bool final_result) OVERRIDE; |
| 362 virtual void SelectedFindResultChanged(PP_Instance instance, | 362 virtual void SelectedFindResultChanged(PP_Instance instance, |
| 363 int32_t index) OVERRIDE; | 363 int32_t index) OVERRIDE; |
| 364 virtual PP_Bool SetFullscreen(PP_Instance instance, | 364 virtual PP_Bool SetFullscreen(PP_Instance instance, |
| 365 PP_Bool fullscreen) OVERRIDE; | 365 PP_Bool fullscreen) OVERRIDE; |
| 366 virtual PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size) | 366 virtual PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size) |
| 367 OVERRIDE; | 367 OVERRIDE; |
| 368 virtual ::ppapi::thunk::PPB_Flash_API* GetFlashAPI() OVERRIDE; | 368 virtual ::ppapi::thunk::PPB_Flash_API* GetFlashAPI() OVERRIDE; |
| 369 virtual ::ppapi::thunk::PPB_Flash_Clipboard_API* GetFlashClipboardAPI( | 369 virtual ::ppapi::thunk::PPB_Flash_Clipboard_API* GetFlashClipboardAPI( |
| 370 PP_Instance instance) OVERRIDE; | 370 PP_Instance instance) OVERRIDE; |
| 371 virtual ::ppapi::thunk::PPB_Flash_File_API* GetFlashFileAPI( |
| 372 PP_Instance instance) OVERRIDE; |
| 371 virtual ::ppapi::thunk::PPB_Flash_Functions_API* GetFlashFunctionsAPI( | 373 virtual ::ppapi::thunk::PPB_Flash_Functions_API* GetFlashFunctionsAPI( |
| 372 PP_Instance instance) OVERRIDE; | 374 PP_Instance instance) OVERRIDE; |
| 373 virtual ::ppapi::thunk::PPB_Gamepad_API* GetGamepadAPI(PP_Instance instance) | 375 virtual ::ppapi::thunk::PPB_Gamepad_API* GetGamepadAPI(PP_Instance instance) |
| 374 OVERRIDE; | 376 OVERRIDE; |
| 375 virtual int32_t RequestInputEvents(PP_Instance instance, | 377 virtual int32_t RequestInputEvents(PP_Instance instance, |
| 376 uint32_t event_classes) OVERRIDE; | 378 uint32_t event_classes) OVERRIDE; |
| 377 virtual int32_t RequestFilteringInputEvents(PP_Instance instance, | 379 virtual int32_t RequestFilteringInputEvents(PP_Instance instance, |
| 378 uint32_t event_classes) OVERRIDE; | 380 uint32_t event_classes) OVERRIDE; |
| 379 virtual void ClearInputEventRequest(PP_Instance instance, | 381 virtual void ClearInputEventRequest(PP_Instance instance, |
| 380 uint32_t event_classes) OVERRIDE; | 382 uint32_t event_classes) OVERRIDE; |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 755 // calls and handles PPB_ContentDecryptor_Private calls. | 757 // calls and handles PPB_ContentDecryptor_Private calls. |
| 756 scoped_ptr<ContentDecryptorDelegate> content_decryptor_delegate_; | 758 scoped_ptr<ContentDecryptorDelegate> content_decryptor_delegate_; |
| 757 | 759 |
| 758 DISALLOW_COPY_AND_ASSIGN(PluginInstance); | 760 DISALLOW_COPY_AND_ASSIGN(PluginInstance); |
| 759 }; | 761 }; |
| 760 | 762 |
| 761 } // namespace ppapi | 763 } // namespace ppapi |
| 762 } // namespace webkit | 764 } // namespace webkit |
| 763 | 765 |
| 764 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 766 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
| OLD | NEW |