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

Unified Diff: webkit/plugins/ppapi/ppb_flash_impl.cc

Issue 11421066: Refactor PPB_Flash_Fullscreen to the new resource model. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 1 month 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
« ppapi/shared_impl/api_id.h ('K') | « webkit/plugins/ppapi/ppb_flash_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/ppb_flash_impl.cc
diff --git a/webkit/plugins/ppapi/ppb_flash_impl.cc b/webkit/plugins/ppapi/ppb_flash_impl.cc
index ccad022b7cc7fc369076b283e64688ecb602a1fc..e446f79a3037b8e58b9ddb72c893462967e0ed11 100644
--- a/webkit/plugins/ppapi/ppb_flash_impl.cc
+++ b/webkit/plugins/ppapi/ppb_flash_impl.cc
@@ -478,20 +478,5 @@ int32_t PPB_Flash_Impl::QueryFileRef(PP_Instance pp_instance,
return ::ppapi::PlatformFileErrorToPepperError(result);
}
-PP_Bool PPB_Flash_Impl::FlashIsFullscreen(PP_Instance instance) {
- return PP_FromBool(instance_->flash_fullscreen());
-}
-
-PP_Bool PPB_Flash_Impl::FlashSetFullscreen(PP_Instance instance,
- PP_Bool fullscreen) {
- instance_->FlashSetFullscreen(PP_ToBool(fullscreen), true);
- return PP_TRUE;
-}
-
-PP_Bool PPB_Flash_Impl::FlashGetScreenSize(PP_Instance instance,
- PP_Size* size) {
- return instance_->GetScreenSize(instance, size);
-}
-
} // namespace ppapi
} // namespace webkit
« ppapi/shared_impl/api_id.h ('K') | « webkit/plugins/ppapi/ppb_flash_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698