diff options
author | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-03 00:49:40 +0000 |
---|---|---|
committer | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-03 00:49:40 +0000 |
commit | 163b594a31c5cea4854c8ce0c613069318563576 (patch) | |
tree | b9df5049fa968a524631de69565679c29eb3a1fe /ppapi/proxy/resource_creation_proxy.h | |
parent | 8df666b5d0c0ff82ebcfeba28da4bcb1d364002e (diff) | |
download | chromium_src-163b594a31c5cea4854c8ce0c613069318563576.zip chromium_src-163b594a31c5cea4854c8ce0c613069318563576.tar.gz chromium_src-163b594a31c5cea4854c8ce0c613069318563576.tar.bz2 |
Add PPB_ImageData and PPB_Graphics2D to the untrusted NaCl build of the proxy.
BUG=116317
TEST=compiles
Review URL: https://chromiumcodereview.appspot.com/10699066
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145230 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/resource_creation_proxy.h')
-rw-r--r-- | ppapi/proxy/resource_creation_proxy.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/proxy/resource_creation_proxy.h b/ppapi/proxy/resource_creation_proxy.h index fcc0780..ddf2b0e 100644 --- a/ppapi/proxy/resource_creation_proxy.h +++ b/ppapi/proxy/resource_creation_proxy.h @@ -97,6 +97,9 @@ class ResourceCreationProxy : public InterfaceProxy, PP_ImageDataFormat format, const PP_Size& size, PP_Bool init_to_zero) OVERRIDE; + virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, + const PP_Size& size, + PP_Bool is_always_opaque) OVERRIDE; #if !defined(OS_NACL) virtual PP_Resource CreateAudioTrusted(PP_Instance instance) OVERRIDE; virtual PP_Resource CreateAudioInput0_1( @@ -120,9 +123,6 @@ class ResourceCreationProxy : public InterfaceProxy, virtual PP_Resource CreateFlashMenu(PP_Instance instance, const PP_Flash_Menu* menu_data) OVERRIDE; virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE; - virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, - const PP_Size& size, - PP_Bool is_always_opaque) OVERRIDE; virtual PP_Resource CreateGraphics3D(PP_Instance instance, PP_Resource share_context, const int32_t* attrib_list) OVERRIDE; |