Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Side by Side Diff: android_webview/tools/system_webview_shell/apk/AndroidManifest.xml

Issue 1901703002: [SystemWebViewShell] Fix behavior when changing screen orientation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 * Copyright 2015 The Chromium Authors. All rights reserved. 2 * Copyright 2015 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 --> 5 -->
6 6
7 <manifest 7 <manifest
8 xmlns:android="http://schemas.android.com/apk/res/android" 8 xmlns:android="http://schemas.android.com/apk/res/android"
9 package="org.chromium.webview_shell" 9 package="org.chromium.webview_shell"
10 android:versionCode="1" 10 android:versionCode="1"
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 <activity 54 <activity
55 android:name="org.chromium.webview_shell.StartupTimeActivity" 55 android:name="org.chromium.webview_shell.StartupTimeActivity"
56 android:label="@string/title_activity_startup_time" 56 android:label="@string/title_activity_startup_time"
57 android:noHistory="true" 57 android:noHistory="true"
58 android:exported="true"> 58 android:exported="true">
59 </activity> 59 </activity>
60 <activity 60 <activity
61 android:name="org.chromium.webview_shell.WebViewBrowserActivity" 61 android:name="org.chromium.webview_shell.WebViewBrowserActivity"
62 android:label="@string/title_activity_browser" 62 android:label="@string/title_activity_browser"
63 android:exported="true" 63 android:exported="true"
64 android:windowSoftInputMode="adjustResize"> 64 android:windowSoftInputMode="adjustResize"
65 android:configChanges="orientation|screenSize">
65 <intent-filter> 66 <intent-filter>
66 <action android:name="android.intent.action.MAIN" /> 67 <action android:name="android.intent.action.MAIN" />
67 <category android:name="android.intent.category.LAUNCHER" /> 68 <category android:name="android.intent.category.LAUNCHER" />
68 </intent-filter> 69 </intent-filter>
69 <!-- Catch intents which do not specify a MIME type --> 70 <!-- Catch intents which do not specify a MIME type -->
70 <intent-filter> 71 <intent-filter>
71 <action android:name="android.intent.action.VIEW" /> 72 <action android:name="android.intent.action.VIEW" />
72 <category android:name="android.intent.category.DEFAULT" /> 73 <category android:name="android.intent.category.DEFAULT" />
73 <category android:name="android.intent.category.BROWSABLE" /> 74 <category android:name="android.intent.category.BROWSABLE" />
74 <data android:scheme="http" /> 75 <data android:scheme="http" />
(...skipping 22 matching lines...) Expand all
97 98
98 <activity 99 <activity
99 android:name="org.chromium.webview_shell.PageCyclerTestActivity" 100 android:name="org.chromium.webview_shell.PageCyclerTestActivity"
100 android:label="@string/title_activity_page_cycler" 101 android:label="@string/title_activity_page_cycler"
101 android:exported="true"> 102 android:exported="true">
102 </activity> 103 </activity>
103 104
104 <uses-library android:name="android.test.runner" /> 105 <uses-library android:name="android.test.runner" />
105 </application> 106 </application>
106 </manifest> 107 </manifest>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698