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

Unified Diff: content/public/browser/content_browser_client.cc

Issue 871443004: Expose the visibility state of a frame to the browser process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@rfh_isfocused
Patch Set: remove from RFH Created 5 years, 11 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/public/browser/content_browser_client.cc
diff --git a/content/public/browser/content_browser_client.cc b/content/public/browser/content_browser_client.cc
index 32d29d735124d905d2edc9792c9d25e1cf397722..d8abdf206823c9e2c1c5d88281670490b724528f 100644
--- a/content/public/browser/content_browser_client.cc
+++ b/content/public/browser/content_browser_client.cc
@@ -329,6 +329,10 @@ net::CookieStore* ContentBrowserClient::OverrideCookieStoreForRenderProcess(
return nullptr;
}
+bool ContentBrowserClient::IsPrerendering(RenderFrameHost* render_frame_host) {
+ return false;
+}
+
bool ContentBrowserClient::CheckMediaAccessPermission(
BrowserContext* browser_context,
const GURL& security_origin,

Powered by Google App Engine
This is Rietveld 408576698