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 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 void SimulateImeSetCompositionEvent( | 336 void SimulateImeSetCompositionEvent( |
337 const ::ppapi::InputEventData& input_event); | 337 const ::ppapi::InputEventData& input_event); |
338 | 338 |
339 ContentDecryptorDelegate* GetContentDecryptorDelegate(); | 339 ContentDecryptorDelegate* GetContentDecryptorDelegate(); |
340 | 340 |
341 // PPB_Instance_API implementation. | 341 // PPB_Instance_API implementation. |
342 virtual PP_Bool BindGraphics(PP_Instance instance, | 342 virtual PP_Bool BindGraphics(PP_Instance instance, |
343 PP_Resource device) OVERRIDE; | 343 PP_Resource device) OVERRIDE; |
344 virtual PP_Bool IsFullFrame(PP_Instance instance) OVERRIDE; | 344 virtual PP_Bool IsFullFrame(PP_Instance instance) OVERRIDE; |
345 virtual const ::ppapi::ViewData* GetViewData(PP_Instance instance) OVERRIDE; | 345 virtual const ::ppapi::ViewData* GetViewData(PP_Instance instance) OVERRIDE; |
| 346 virtual PP_Bool FlashIsFullscreen(PP_Instance instance) OVERRIDE; |
346 virtual PP_Var GetWindowObject(PP_Instance instance) OVERRIDE; | 347 virtual PP_Var GetWindowObject(PP_Instance instance) OVERRIDE; |
347 virtual PP_Var GetOwnerElementObject(PP_Instance instance) OVERRIDE; | 348 virtual PP_Var GetOwnerElementObject(PP_Instance instance) OVERRIDE; |
348 virtual PP_Var ExecuteScript(PP_Instance instance, | 349 virtual PP_Var ExecuteScript(PP_Instance instance, |
349 PP_Var script, | 350 PP_Var script, |
350 PP_Var* exception) OVERRIDE; | 351 PP_Var* exception) OVERRIDE; |
351 virtual uint32_t GetAudioHardwareOutputSampleRate(PP_Instance instance) | 352 virtual uint32_t GetAudioHardwareOutputSampleRate(PP_Instance instance) |
352 OVERRIDE; | 353 OVERRIDE; |
353 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance) | 354 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance) |
354 OVERRIDE; | 355 OVERRIDE; |
355 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE; | 356 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE; |
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
752 // calls and handles PPB_ContentDecryptor_Private calls. | 753 // calls and handles PPB_ContentDecryptor_Private calls. |
753 scoped_ptr<ContentDecryptorDelegate> content_decryptor_delegate_; | 754 scoped_ptr<ContentDecryptorDelegate> content_decryptor_delegate_; |
754 | 755 |
755 DISALLOW_COPY_AND_ASSIGN(PluginInstance); | 756 DISALLOW_COPY_AND_ASSIGN(PluginInstance); |
756 }; | 757 }; |
757 | 758 |
758 } // namespace ppapi | 759 } // namespace ppapi |
759 } // namespace webkit | 760 } // namespace webkit |
760 | 761 |
761 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 762 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
OLD | NEW |