summaryrefslogtreecommitdiffstats
path: root/android_webview/test
diff options
context:
space:
mode:
authorsungmann.cho@navercorp.com <sungmann.cho@navercorp.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-04 16:26:37 +0000
committersungmann.cho@navercorp.com <sungmann.cho@navercorp.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-04 16:26:37 +0000
commit5974a767d12d01064ddf07fd42632e56dfe95ab1 (patch)
tree01bc6d57020e085a06780dffd6b98383896c2f91 /android_webview/test
parentcda103d4b35748e4d72a3ebecc57e827ca0c716d (diff)
downloadchromium_src-5974a767d12d01064ddf07fd42632e56dfe95ab1.zip
chromium_src-5974a767d12d01064ddf07fd42632e56dfe95ab1.tar.gz
chromium_src-5974a767d12d01064ddf07fd42632e56dfe95ab1.tar.bz2
Prevent AW Shell from restarting activity after some configurations change.
Currently AwShellActivity is shut down and restarted when some configuration changes occur at runtime. We need to fix this for smooth testing. Review URL: https://codereview.chromium.org/225443002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@261775 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/test')
-rw-r--r--android_webview/test/shell/AndroidManifest.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/android_webview/test/shell/AndroidManifest.xml b/android_webview/test/shell/AndroidManifest.xml
index aee0cae..b6ec63e 100644
--- a/android_webview/test/shell/AndroidManifest.xml
+++ b/android_webview/test/shell/AndroidManifest.xml
@@ -12,7 +12,8 @@
<application android:name="org.chromium.android_webview.shell.AwShellApplication"
android:label="AwShellApplication" android:hardwareAccelerated="false">
<activity android:name="org.chromium.android_webview.shell.AwShellActivity"
- android:label="Android WebView Test Shell">
+ android:label="Android WebView Test Shell"
+ android:configChanges="orientation|keyboardHidden|keyboard|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />