Index: content/shell/android/browsertests_apk/src/org/chromium/content_browsertests_apk/ContentBrowserTestsActivity.java |
diff --git a/content/shell/android/browsertests_apk/src/org/chromium/content_browsertests_apk/ContentBrowserTestsActivity.java b/content/shell/android/browsertests_apk/src/org/chromium/content_browsertests_apk/ContentBrowserTestsActivity.java |
index 3f25e68e273e6d99ef420f097662453827c734a3..d7aeecfe3a90d9dd426ddc8edb9c21a0b791d4f8 100644 |
--- a/content/shell/android/browsertests_apk/src/org/chromium/content_browsertests_apk/ContentBrowserTestsActivity.java |
+++ b/content/shell/android/browsertests_apk/src/org/chromium/content_browsertests_apk/ContentBrowserTestsActivity.java |
@@ -7,13 +7,13 @@ package org.chromium.content_browsertests_apk; |
import android.app.Activity; |
import android.content.Context; |
import android.os.Bundle; |
+import android.util.Log; |
import android.view.LayoutInflater; |
import android.view.View; |
-import android.util.Log; |
import org.chromium.base.JNINamespace; |
import org.chromium.content.app.LibraryLoader; |
-import org.chromium.content.browser.AndroidBrowserProcess; |
+import org.chromium.content.browser.BrowserStartupController; |
import org.chromium.content.common.ProcessInitException; |
import org.chromium.content_shell.ShellManager; |
import org.chromium.ui.WindowAndroid; |
@@ -34,7 +34,7 @@ public class ContentBrowserTestsActivity extends Activity { |
} catch (ProcessInitException e) { |
Log.i(TAG, "Cannot load content_browsertests:" + e); |
} |
- AndroidBrowserProcess.initChromiumBrowserProcessForTests(getApplicationContext()); |
+ BrowserStartupController.get(getApplicationContext()).initChromiumBrowserProcessForTests(); |
LayoutInflater inflater = |
(LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE); |