diff options
author | raymes@chromium.org <raymes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-01 23:39:34 +0000 |
---|---|---|
committer | raymes@chromium.org <raymes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-01 23:39:34 +0000 |
commit | a1686e279d7f6ec3cebc91cd759af80963e2c0ad (patch) | |
tree | 19f9986146e49985b8ddecee53a241c4efe7b083 /ppapi/proxy/ppb_instance_proxy.h | |
parent | 259359a48b7f497a355bcd9fea7ae3bd361a7539 (diff) | |
download | chromium_src-a1686e279d7f6ec3cebc91cd759af80963e2c0ad.zip chromium_src-a1686e279d7f6ec3cebc91cd759af80963e2c0ad.tar.gz chromium_src-a1686e279d7f6ec3cebc91cd759af80963e2c0ad.tar.bz2 |
Move flash clipboard to the new proxy and add custom format support
This moves the flash clipboard interface to the new pepper proxy. It also adds support for copying/pasting data of custom data formats (which is needed for flash).
BUG=154497
TEST=Added new pepper tests
Review URL: https://chromiumcodereview.appspot.com/11225021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165548 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/ppb_instance_proxy.h')
-rw-r--r-- | ppapi/proxy/ppb_instance_proxy.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ppapi/proxy/ppb_instance_proxy.h b/ppapi/proxy/ppb_instance_proxy.h index a30797cd..9b4de32 100644 --- a/ppapi/proxy/ppb_instance_proxy.h +++ b/ppapi/proxy/ppb_instance_proxy.h @@ -72,6 +72,8 @@ class PPB_Instance_Proxy : public InterfaceProxy, virtual thunk::PPB_Flash_API* GetFlashAPI() OVERRIDE; virtual thunk::PPB_Flash_Functions_API* GetFlashFunctionsAPI( PP_Instance instance) OVERRIDE; + virtual thunk::PPB_Flash_Clipboard_API* GetFlashClipboardAPI( + PP_Instance instance) OVERRIDE; virtual thunk::PPB_Gamepad_API* GetGamepadAPI(PP_Instance instance) OVERRIDE; virtual int32_t RequestInputEvents(PP_Instance instance, uint32_t event_classes) OVERRIDE; |