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

Unified Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 10919075: Move android mediaplayer from render process to browser process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressing comments and resolving merge conflicts Created 8 years, 3 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 | « content/browser/browser_main_runner.cc ('k') | content/browser/renderer_host/render_view_host_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/render_process_host_impl.cc
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
index 3ef51174f6bc60be093a386b32e9ed0d421f52d7..bc5c4bfcf36ca7f93dcc5b4a143014a9482d1bb8 100644
--- a/content/browser/renderer_host/render_process_host_impl.cc
+++ b/content/browser/renderer_host/render_process_host_impl.cc
@@ -817,12 +817,13 @@ void RenderProcessHostImpl::PropagateBrowserCommandLineToRenderer(
switches::kInProcessWebGL,
switches::kJavaScriptFlags,
switches::kLoggingLevel,
- switches::kOldCheckboxStyle,
#if defined(OS_ANDROID)
+ switches::kMediaPlayerInRenderProcess,
switches::kNetworkCountryIso,
#endif
switches::kNoReferrers,
switches::kNoSandbox,
+ switches::kOldCheckboxStyle,
switches::kPpapiOutOfProcess,
switches::kRegisterPepperPlugins,
switches::kRendererAssertTest,
@@ -849,6 +850,9 @@ void RenderProcessHostImpl::PropagateBrowserCommandLineToRenderer(
if (GetBrowserContext()->IsOffTheRecord() &&
!browser_cmd.HasSwitch(switches::kDisableDatabases)) {
renderer_cmd->AppendSwitch(switches::kDisableDatabases);
+#if defined(OS_ANDROID)
+ renderer_cmd->AppendSwitch(switches::kDisableMediaHistoryLogging);
+#endif
}
}
« no previous file with comments | « content/browser/browser_main_runner.cc ('k') | content/browser/renderer_host/render_view_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698