Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Unified Diff: ppapi/proxy/ppp_instance_proxy.cc

Issue 10977073: Delete some unused code found by -Wunused-function (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tweak, rebase Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ppapi/proxy/ppp_instance_proxy.cc
diff --git a/ppapi/proxy/ppp_instance_proxy.cc b/ppapi/proxy/ppp_instance_proxy.cc
index f7c7dfd861e093628d1c84c71227e6faed5f3cf1..16287ba780478246c474aeb5796f80d64a7d1799 100644
--- a/ppapi/proxy/ppp_instance_proxy.cc
+++ b/ppapi/proxy/ppp_instance_proxy.cc
@@ -28,17 +28,6 @@ namespace proxy {
namespace {
-void GetFullscreenStates(PP_Instance instance,
- HostDispatcher* dispatcher,
- PP_Bool* fullscreen,
- PP_Bool* flash_fullscreen) {
- const PPB_Fullscreen* fullscreen_interface =
- static_cast<const PPB_Fullscreen*>(
- dispatcher->local_get_interface()(PPB_FULLSCREEN_INTERFACE));
- DCHECK(fullscreen_interface);
- *fullscreen = fullscreen_interface->IsFullscreen(instance);
-}
-
PP_Bool IsFlashFullscreen(PP_Instance instance,
HostDispatcher* dispatcher) {
const PPB_FlashFullscreen* flash_fullscreen_interface =

Powered by Google App Engine
This is Rietveld 408576698