mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-07 06:25:16 +01:00
41 lines
1.6 KiB
Diff
41 lines
1.6 KiB
Diff
diff --git public/renderer/content_renderer_client.cc public/renderer/content_renderer_client.cc
|
|
index cc1d049a..8490e65 100644
|
|
--- public/renderer/content_renderer_client.cc
|
|
+++ public/renderer/content_renderer_client.cc
|
|
@@ -99,7 +99,6 @@ bool ContentRendererClient::AllowPopup() {
|
|
return false;
|
|
}
|
|
|
|
-#if defined(OS_ANDROID)
|
|
bool ContentRendererClient::HandleNavigation(
|
|
RenderFrame* render_frame,
|
|
bool is_content_initiated,
|
|
@@ -112,6 +111,7 @@ bool ContentRendererClient::HandleNavigation(
|
|
return false;
|
|
}
|
|
|
|
+#if defined(OS_ANDROID)
|
|
bool ContentRendererClient::ShouldUseMediaPlayerForURL(const GURL& url) {
|
|
return false;
|
|
}
|
|
diff --git public/renderer/content_renderer_client.h public/renderer/content_renderer_client.h
|
|
index 9895206..1f4626d 100644
|
|
--- public/renderer/content_renderer_client.h
|
|
+++ public/renderer/content_renderer_client.h
|
|
@@ -198,7 +198,6 @@ class CONTENT_EXPORT ContentRendererClient {
|
|
// Returns true if a popup window should be allowed.
|
|
virtual bool AllowPopup();
|
|
|
|
-#if defined(OS_ANDROID)
|
|
// TODO(sgurun) This callback is deprecated and will be removed as soon
|
|
// as android webview completes implementation of a resource throttle based
|
|
// shouldoverrideurl implementation. See crbug.com/325351
|
|
@@ -214,6 +213,7 @@ class CONTENT_EXPORT ContentRendererClient {
|
|
blink::WebNavigationPolicy default_policy,
|
|
bool is_redirect);
|
|
|
|
+#if defined(OS_ANDROID)
|
|
// Indicates if the Android MediaPlayer should be used instead of Chrome's
|
|
// built in media player for the given |url|. Defaults to false.
|
|
virtual bool ShouldUseMediaPlayerForURL(const GURL& url);
|