| Index: content/shell/android/java/src/org/chromium/content_shell/Shell.java
|
| diff --git a/content/shell/android/java/src/org/chromium/content_shell/Shell.java b/content/shell/android/java/src/org/chromium/content_shell/Shell.java
|
| index 31c66c936fe9e2490dcddf536763b31109fd9724..75ce8a370c8a5af8760d3f96bd44c0e8f1ff64d5 100644
|
| --- a/content/shell/android/java/src/org/chromium/content_shell/Shell.java
|
| +++ b/content/shell/android/java/src/org/chromium/content_shell/Shell.java
|
| @@ -24,6 +24,7 @@ import org.chromium.base.JNINamespace;
|
| import org.chromium.content.browser.ContentView;
|
| import org.chromium.content.browser.ContentViewRenderView;
|
| import org.chromium.content.browser.LoadUrlParams;
|
| +import org.chromium.content.common.ProcessInitException;
|
| import org.chromium.ui.gfx.NativeWindow;
|
|
|
| /**
|
| @@ -212,7 +213,7 @@ public class Shell extends LinearLayout {
|
| */
|
| @SuppressWarnings("unused")
|
| @CalledByNative
|
| - private void initFromNativeTabContents(int nativeTabContents) {
|
| + private void initFromNativeTabContents(int nativeTabContents) throws ProcessInitException {
|
| mContentView = ContentView.newInstance(
|
| getContext(), nativeTabContents, mWindow, ContentView.PERSONALITY_CHROME);
|
| if (mContentView.getUrl() != null) mUrlTextView.setText(mContentView.getUrl());
|
|
|