diff options
author | polina@google.com <polina@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-14 21:59:17 +0000 |
---|---|---|
committer | polina@google.com <polina@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-14 21:59:17 +0000 |
commit | 6570e56784b0970646c5c4c704e155015400a032 (patch) | |
tree | 6b3adbd125f753a275233834545bedee2a4c8302 /ppapi/proxy/ppp_instance_proxy_unittest.cc | |
parent | d280ab686b2dbfe743bbaa7d39e9d2f03af82e31 (diff) | |
download | chromium_src-6570e56784b0970646c5c4c704e155015400a032.zip chromium_src-6570e56784b0970646c5c4c704e155015400a032.tar.gz chromium_src-6570e56784b0970646c5c4c704e155015400a032.tar.bz2 |
PPAPI Fullscreen: move out of Dev.
BUG=41780
TEST=in CL
Review URL: http://codereview.chromium.org/8291002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105590 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/ppp_instance_proxy_unittest.cc')
-rw-r--r-- | ppapi/proxy/ppp_instance_proxy_unittest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/proxy/ppp_instance_proxy_unittest.cc b/ppapi/proxy/ppp_instance_proxy_unittest.cc index 96ac24c..c97ef21 100644 --- a/ppapi/proxy/ppp_instance_proxy_unittest.cc +++ b/ppapi/proxy/ppp_instance_proxy_unittest.cc @@ -4,9 +4,9 @@ #include "base/synchronization/waitable_event.h" #include "ipc/ipc_message_utils.h" -#include "ppapi/c/dev/ppb_fullscreen_dev.h" #include "ppapi/c/pp_var.h" #include "ppapi/c/ppb_core.h" +#include "ppapi/c/ppb_fullscreen.h" #include "ppapi/c/ppb_url_loader.h" #include "ppapi/c/ppp_instance.h" #include "ppapi/c/private/ppb_flash_fullscreen.h" @@ -95,7 +95,7 @@ PPP_Instance_1_0 ppp_instance_1_0 = { PP_Bool IsFullscreen(PP_Instance instance) { return PP_FALSE; } -PPB_Fullscreen_Dev ppb_fullscreen = { &IsFullscreen }; +PPB_Fullscreen ppb_fullscreen = { &IsFullscreen }; PPB_FlashFullscreen ppb_flash_fullscreen = { &IsFullscreen }; } // namespace @@ -111,7 +111,7 @@ TEST_F(PPP_Instance_ProxyTest, PPPInstance1_0) { plugin().RegisterTestInterface(PPP_INSTANCE_INTERFACE_1_0, &ppp_instance_1_0); host().RegisterTestInterface(PPB_FLASHFULLSCREEN_INTERFACE, &ppb_flash_fullscreen); - host().RegisterTestInterface(PPB_FULLSCREEN_DEV_INTERFACE, + host().RegisterTestInterface(PPB_FULLSCREEN_INTERFACE, &ppb_fullscreen); // Grab the host-side proxy for the 1.0 interface. |