| 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 ffbfc6dd890be4ca060a06875d2242a6e3959c3d..ddf549873df2bb7418cea3b3026b123351db62a2 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
|
| @@ -5,7 +5,6 @@
|
| package org.chromium.content_shell_apk;
|
|
|
| import android.app.Activity;
|
| -import android.content.Context;
|
| import android.content.Intent;
|
| import android.os.Bundle;
|
| import android.text.TextUtils;
|
| @@ -25,6 +24,7 @@ import org.chromium.content.common.CommandLine;
|
| import org.chromium.content.common.ProcessInitException;
|
| import org.chromium.content_shell.Shell;
|
| import org.chromium.content_shell.ShellManager;
|
| +import org.chromium.ui.ActivityWindowAndroid;
|
| import org.chromium.ui.WindowAndroid;
|
|
|
| /**
|
| @@ -66,7 +66,7 @@ public class ContentShellActivity extends Activity {
|
|
|
| setContentView(R.layout.content_shell_activity);
|
| mShellManager = (ShellManager) findViewById(R.id.shell_container);
|
| - mWindowAndroid = new WindowAndroid(this);
|
| + mWindowAndroid = new ActivityWindowAndroid(this);
|
| mWindowAndroid.restoreInstanceState(savedInstanceState);
|
| mShellManager.setWindow(mWindowAndroid);
|
|
|
|
|