| Index: chrome/android/java/src/org/chromium/chrome/browser/TabBase.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/TabBase.java b/chrome/android/java/src/org/chromium/chrome/browser/TabBase.java
|
| index f65d228b19537479dfcfb5d6f2ba0132a6aad275..69b5ec70f47dd49987940e238572c042f4c2dd04 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/TabBase.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/TabBase.java
|
| @@ -10,6 +10,7 @@ import android.text.TextUtils;
|
| import org.chromium.content.browser.ContentView;
|
| import org.chromium.content.browser.LoadUrlParams;
|
| import org.chromium.content.common.CleanupReference;
|
| +import org.chromium.content.common.ProcessInitException;
|
| import org.chromium.ui.gfx.NativeWindow;
|
|
|
| import java.util.ArrayList;
|
| @@ -35,7 +36,8 @@ public class TabBase {
|
| * @param url The URL to start this tab with.
|
| * @param window The NativeWindow should represent this tab.
|
| */
|
| - public TabBase(Context context, String url, NativeWindow window) {
|
| + public TabBase(Context context, String url, NativeWindow window)
|
| + throws ProcessInitException {
|
| this(context, 0, window);
|
| loadUrlWithSanitization(url);
|
| }
|
| @@ -45,7 +47,8 @@ public class TabBase {
|
| * @param nativeWebContentsPtr A native pointer to the WebContents this tab represents.
|
| * @param window The NativeWindow should represent this tab.
|
| */
|
| - public TabBase(Context context, int nativeWebContentsPtr, NativeWindow window) {
|
| + public TabBase(Context context, int nativeWebContentsPtr, NativeWindow window)
|
| + throws ProcessInitException {
|
| mWindow = window;
|
|
|
| // Build the WebContents and the ContentView/ContentViewCore
|
|
|