Index: content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ContentShellActivity.java |
diff --git a/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ContentShellActivity.java b/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ContentShellActivity.java |
index 95ab6033a6c74bb4eb7c8a86ff6c91b09d28d3c9..c6362eac9ef3cad853292f16ec82d0319d1d2782 100644 |
--- a/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ContentShellActivity.java |
+++ b/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ContentShellActivity.java |
@@ -89,7 +89,7 @@ public class ContentShellActivity extends Activity { |
if (CommandLine.getInstance().hasSwitch(ContentSwitches.RUN_LAYOUT_TEST) |
|| CommandLine.getInstance().hasSwitch(ContentSwitches.DUMP_RENDER_TREE)) { |
try { |
- BrowserStartupController.get(this, LibraryProcessType.PROCESS_BROWSER) |
+ BrowserStartupController.get(this, LibraryProcessType.PROCESS_BROWSER, true) |
.startBrowserProcessesSync(false); |
} catch (ProcessInitException e) { |
Log.e(TAG, "Failed to load native library.", e); |
@@ -97,7 +97,7 @@ public class ContentShellActivity extends Activity { |
} |
} else { |
try { |
- BrowserStartupController.get(this, LibraryProcessType.PROCESS_BROWSER) |
+ BrowserStartupController.get(this, LibraryProcessType.PROCESS_BROWSER, true) |
.startBrowserProcessesAsync( |
new BrowserStartupController.StartupCallback() { |
@Override |