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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 virtual PP_Var GetWindowObject(PP_Instance instance) OVERRIDE; | 349 virtual PP_Var GetWindowObject(PP_Instance instance) OVERRIDE; |
350 virtual PP_Var GetOwnerElementObject(PP_Instance instance) OVERRIDE; | 350 virtual PP_Var GetOwnerElementObject(PP_Instance instance) OVERRIDE; |
351 virtual PP_Var ExecuteScript(PP_Instance instance, | 351 virtual PP_Var ExecuteScript(PP_Instance instance, |
352 PP_Var script, | 352 PP_Var script, |
353 PP_Var* exception) OVERRIDE; | 353 PP_Var* exception) OVERRIDE; |
354 virtual uint32_t GetAudioHardwareOutputSampleRate(PP_Instance instance) | 354 virtual uint32_t GetAudioHardwareOutputSampleRate(PP_Instance instance) |
355 OVERRIDE; | 355 OVERRIDE; |
356 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance) | 356 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance) |
357 OVERRIDE; | 357 OVERRIDE; |
358 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE; | 358 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE; |
359 virtual PP_Var GetFontFamilies(PP_Instance instance) OVERRIDE; | |
360 virtual void NumberOfFindResultsChanged(PP_Instance instance, | 359 virtual void NumberOfFindResultsChanged(PP_Instance instance, |
361 int32_t total, | 360 int32_t total, |
362 PP_Bool final_result) OVERRIDE; | 361 PP_Bool final_result) OVERRIDE; |
363 virtual void SelectedFindResultChanged(PP_Instance instance, | 362 virtual void SelectedFindResultChanged(PP_Instance instance, |
364 int32_t index) OVERRIDE; | 363 int32_t index) OVERRIDE; |
365 virtual PP_Bool SetFullscreen(PP_Instance instance, | 364 virtual PP_Bool SetFullscreen(PP_Instance instance, |
366 PP_Bool fullscreen) OVERRIDE; | 365 PP_Bool fullscreen) OVERRIDE; |
367 virtual PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size) | 366 virtual PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size) |
368 OVERRIDE; | 367 OVERRIDE; |
369 virtual ::ppapi::thunk::PPB_Flash_API* GetFlashAPI() OVERRIDE; | 368 virtual ::ppapi::thunk::PPB_Flash_API* GetFlashAPI() OVERRIDE; |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
763 // calls and handles PPB_ContentDecryptor_Private calls. | 762 // calls and handles PPB_ContentDecryptor_Private calls. |
764 scoped_ptr<ContentDecryptorDelegate> content_decryptor_delegate_; | 763 scoped_ptr<ContentDecryptorDelegate> content_decryptor_delegate_; |
765 | 764 |
766 DISALLOW_COPY_AND_ASSIGN(PluginInstance); | 765 DISALLOW_COPY_AND_ASSIGN(PluginInstance); |
767 }; | 766 }; |
768 | 767 |
769 } // namespace ppapi | 768 } // namespace ppapi |
770 } // namespace webkit | 769 } // namespace webkit |
771 | 770 |
772 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 771 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
OLD | NEW |