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

Unified Diff: content/browser/web_contents/web_contents_impl.cc

Issue 1980633002: Remove unused routing ID param from Did(Show|Destroy)FullscreenWidget. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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: content/browser/web_contents/web_contents_impl.cc
diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
index 267eeb8e5360f38c727800484ca4396897bf36ff..6ad74cee8844cfd175b296bf6697f1c5c22b6dbe 100644
--- a/content/browser/web_contents/web_contents_impl.cc
+++ b/content/browser/web_contents/web_contents_impl.cc
@@ -1680,8 +1680,7 @@ void WebContentsImpl::RenderWidgetDeleted(
delegate_->ExitFullscreenModeForTab(this);
FOR_EACH_OBSERVER(WebContentsObserver,
observers_,
- DidDestroyFullscreenWidget(
- fullscreen_widget_routing_id_));
+ DidDestroyFullscreenWidget());
fullscreen_widget_routing_id_ = MSG_ROUTING_NONE;
if (fullscreen_widget_had_focus_at_shutdown_)
view_->RestoreFocus();
@@ -2182,7 +2181,7 @@ void WebContentsImpl::ShowCreatedWidget(int route_id,
}
FOR_EACH_OBSERVER(WebContentsObserver,
observers_,
- DidShowFullscreenWidget(route_id));
+ DidShowFullscreenWidget());
if (!widget_host_view->HasFocus())
widget_host_view->Focus();
} else {
« no previous file with comments | « content/browser/media/capture/web_contents_tracker.cc ('k') | content/public/browser/web_contents_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698