diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-20 20:08:40 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-20 20:08:40 +0000 |
commit | dafab7597fe21cb8eb08e384a09636e7cd7c88dc (patch) | |
tree | 95d272f43d790e66398ee4b615e37b16ec6aa20b /ppapi/proxy/ppp_instance_proxy.cc | |
parent | 1c4164cfa27f4c12089cd5836cd016f2f859a276 (diff) | |
download | chromium_src-dafab7597fe21cb8eb08e384a09636e7cd7c88dc.zip chromium_src-dafab7597fe21cb8eb08e384a09636e7cd7c88dc.tar.gz chromium_src-dafab7597fe21cb8eb08e384a09636e7cd7c88dc.tar.bz2 |
Rename PPB_Fullscreen_Dev to PPB_FlashFullscreen.
This is to make way for the new PPB_Fullscreen interface which will hopefully replace the old one at some point. This maintains backwards binary compat.
I renamed two things related to the broker because the file wasn't being included in the proxy properly, and we never noticed they were wrong.
This also fixes a crash in the test harness generating the list of tests, since there is no current test case for the DidChangeView call.
Review URL: http://codereview.chromium.org/7917019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101999 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/ppp_instance_proxy.cc')
-rw-r--r-- | ppapi/proxy/ppp_instance_proxy.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ppapi/proxy/ppp_instance_proxy.cc b/ppapi/proxy/ppp_instance_proxy.cc index aa4b7e7..19b23f8 100644 --- a/ppapi/proxy/ppp_instance_proxy.cc +++ b/ppapi/proxy/ppp_instance_proxy.cc @@ -6,10 +6,10 @@ #include <algorithm> -#include "ppapi/c/dev/ppb_fullscreen_dev.h" #include "ppapi/c/pp_var.h" #include "ppapi/c/ppb_core.h" #include "ppapi/c/ppp_instance.h" +#include "ppapi/c/private/ppb_flash_fullscreen.h" #include "ppapi/proxy/host_dispatcher.h" #include "ppapi/proxy/plugin_dispatcher.h" #include "ppapi/proxy/plugin_resource_tracker.h" @@ -48,9 +48,9 @@ void DidChangeView(PP_Instance instance, const PP_Rect* position, const PP_Rect* clip) { HostDispatcher* dispatcher = HostDispatcher::GetForInstance(instance); - const PPB_Fullscreen_Dev* fullscreen_interface = - static_cast<const PPB_Fullscreen_Dev*>( - dispatcher->local_get_interface()(PPB_FULLSCREEN_DEV_INTERFACE)); + const PPB_FlashFullscreen* fullscreen_interface = + static_cast<const PPB_FlashFullscreen*>( + dispatcher->local_get_interface()(PPB_FLASHFULLSCREEN_INTERFACE)); DCHECK(fullscreen_interface); PP_Bool fullscreen = fullscreen_interface->IsFullscreen(instance); dispatcher->Send( |