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

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

Issue 8362021: Remove unused argument that was not cleaned up in (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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
« no previous file with comments | « webkit/plugins/ppapi/ppapi_plugin_instance.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/ppapi_plugin_instance.cc
===================================================================
--- webkit/plugins/ppapi/ppapi_plugin_instance.cc (revision 107024)
+++ webkit/plugins/ppapi/ppapi_plugin_instance.cc (working copy)
@@ -425,7 +425,7 @@
HostGlobals::Get()->InstanceCrashed(pp_instance());
// Free any associated graphics.
- SetFullscreen(false, false);
+ SetFullscreen(false);
FlashSetFullscreen(false, false);
bound_graphics_ = NULL;
InvalidateRect(gfx::Rect());
@@ -1156,7 +1156,7 @@
return desired_fullscreen_state_;
}
-bool PluginInstance::SetFullscreen(bool fullscreen, bool delay_report) {
+bool PluginInstance::SetFullscreen(bool fullscreen) {
// Keep a reference on the stack. See NOTE above.
scoped_refptr<PluginInstance> ref(this);
@@ -1813,7 +1813,7 @@
PP_Bool PluginInstance::SetFullscreen(PP_Instance instance,
PP_Bool fullscreen) {
- return PP_FromBool(SetFullscreen(PP_ToBool(fullscreen), true));
+ return PP_FromBool(SetFullscreen(PP_ToBool(fullscreen)));
}
PP_Bool PluginInstance::FlashSetFullscreen(PP_Instance instance,
« no previous file with comments | « webkit/plugins/ppapi/ppapi_plugin_instance.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698