| 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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 virtual PP_Var GetWindowObject(PP_Instance instance) OVERRIDE; | 356 virtual PP_Var GetWindowObject(PP_Instance instance) OVERRIDE; |
| 357 virtual PP_Var GetOwnerElementObject(PP_Instance instance) OVERRIDE; | 357 virtual PP_Var GetOwnerElementObject(PP_Instance instance) OVERRIDE; |
| 358 virtual PP_Var ExecuteScript(PP_Instance instance, | 358 virtual PP_Var ExecuteScript(PP_Instance instance, |
| 359 PP_Var script, | 359 PP_Var script, |
| 360 PP_Var* exception) OVERRIDE; | 360 PP_Var* exception) OVERRIDE; |
| 361 virtual uint32_t GetAudioHardwareOutputSampleRate(PP_Instance instance) | 361 virtual uint32_t GetAudioHardwareOutputSampleRate(PP_Instance instance) |
| 362 OVERRIDE; | 362 OVERRIDE; |
| 363 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance) | 363 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance) |
| 364 OVERRIDE; | 364 OVERRIDE; |
| 365 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE; | 365 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE; |
| 366 virtual PP_Var GetFontFamilies(PP_Instance instance) OVERRIDE; | |
| 367 virtual void NumberOfFindResultsChanged(PP_Instance instance, | 366 virtual void NumberOfFindResultsChanged(PP_Instance instance, |
| 368 int32_t total, | 367 int32_t total, |
| 369 PP_Bool final_result) OVERRIDE; | 368 PP_Bool final_result) OVERRIDE; |
| 370 virtual void SelectedFindResultChanged(PP_Instance instance, | 369 virtual void SelectedFindResultChanged(PP_Instance instance, |
| 371 int32_t index) OVERRIDE; | 370 int32_t index) OVERRIDE; |
| 372 virtual PP_Bool SetFullscreen(PP_Instance instance, | 371 virtual PP_Bool SetFullscreen(PP_Instance instance, |
| 373 PP_Bool fullscreen) OVERRIDE; | 372 PP_Bool fullscreen) OVERRIDE; |
| 374 virtual PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size) | 373 virtual PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size) |
| 375 OVERRIDE; | 374 OVERRIDE; |
| 376 virtual ::ppapi::thunk::PPB_Flash_API* GetFlashAPI() OVERRIDE; | 375 virtual ::ppapi::thunk::PPB_Flash_API* GetFlashAPI() OVERRIDE; |
| (...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 // calls and handles PPB_ContentDecryptor_Private calls. | 774 // calls and handles PPB_ContentDecryptor_Private calls. |
| 776 scoped_ptr<ContentDecryptorDelegate> content_decryptor_delegate_; | 775 scoped_ptr<ContentDecryptorDelegate> content_decryptor_delegate_; |
| 777 | 776 |
| 778 DISALLOW_COPY_AND_ASSIGN(PluginInstance); | 777 DISALLOW_COPY_AND_ASSIGN(PluginInstance); |
| 779 }; | 778 }; |
| 780 | 779 |
| 781 } // namespace ppapi | 780 } // namespace ppapi |
| 782 } // namespace webkit | 781 } // namespace webkit |
| 783 | 782 |
| 784 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 783 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
| OLD | NEW |