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

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

Issue 1973813002: Fix Fullscreen Flash for out-of-process iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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.h
diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h
index 92919be4ea74b72d27e8cfb3f6e86fcb829f79f6..10dce041820de0c56b8e69d04598588d183c90d0 100644
--- a/content/browser/web_contents/web_contents_impl.h
+++ b/content/browser/web_contents/web_contents_impl.h
@@ -167,10 +167,6 @@ class CONTENT_EXPORT WebContentsImpl
// plugins it is hosting.
void CancelActiveAndPendingDialogs();
- // Gets the current fullscreen render widget's routing ID. Returns
- // MSG_ROUTING_NONE when there is no fullscreen render widget.
- int GetFullscreenWidgetRoutingID() const;
-
// Invoked when visible SSL state (as defined by SSLStatus) changes.
void DidChangeVisibleSSLState();
@@ -1317,6 +1313,10 @@ private:
// outlive it.
std::set<RenderWidgetHostImpl*> created_widgets_;
+ // Process id of the shown fullscreen widget, or kInvalidUniqueID if there is
+ // no fullscreen widget.
+ int fullscreen_widget_process_id_;
+
// Routing id of the shown fullscreen widget or MSG_ROUTING_NONE otherwise.
int fullscreen_widget_routing_id_;
« no previous file with comments | « content/browser/renderer_host/render_view_host_impl.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698