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

Unified Diff: components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GCMDriver.java

Issue 356453003: Don't share renderers between unrelated tabs on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move declaration of more services to a separate CL. Created 6 years, 6 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: components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GCMDriver.java
diff --git a/components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GCMDriver.java b/components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GCMDriver.java
index 579f181fd7d59bbc80a40e8be165f60d3be6da19..f6596eedf6bc7b259df96269ab0c8240ea1a2b56 100644
--- a/components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GCMDriver.java
+++ b/components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GCMDriver.java
@@ -249,8 +249,7 @@ public class GCMDriver {
// ChromeShellApplication.initCommandLine() as appropriate.
try {
- final int MAX_RENDERERS = 1;
- BrowserStartupController.get(context).startBrowserProcessesSync(MAX_RENDERERS);
+ BrowserStartupController.get(context).startBrowserProcessesSync(false);
klobag.chromium 2014/06/27 16:25:42 Hmm, we should check why they limit this to one. D
ppi 2014/06/27 16:40:32 I spoke with johnme@ about this, we concluded we s
if (sInstance != null) {
task.run();
} else {

Powered by Google App Engine
This is Rietveld 408576698