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

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

Issue 2202123002: Make WebView respond to device scale change (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Combined two setSize methods again with question Created 4 years, 4 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
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 android:name="org.chromium.webview_shell.WebViewCreateDestroyActivit y" 61 android:name="org.chromium.webview_shell.WebViewCreateDestroyActivit y"
62 android:launchMode="singleTask" 62 android:launchMode="singleTask"
63 android:label="@string/title_activity_create_destroy" 63 android:label="@string/title_activity_create_destroy"
64 android:exported="true"> 64 android:exported="true">
65 </activity> 65 </activity>
66 <activity 66 <activity
67 android:name="org.chromium.webview_shell.WebViewBrowserActivity" 67 android:name="org.chromium.webview_shell.WebViewBrowserActivity"
68 android:label="@string/title_activity_browser" 68 android:label="@string/title_activity_browser"
69 android:exported="true" 69 android:exported="true"
70 android:windowSoftInputMode="adjustResize" 70 android:windowSoftInputMode="adjustResize"
71 android:configChanges="orientation|screenSize|smallestScreenSize|scr eenLayout"> 71 android:configChanges="orientation|screenSize|smallestScreenSize|scr eenLayout|density">
72 <intent-filter> 72 <intent-filter>
73 <action android:name="android.intent.action.MAIN" /> 73 <action android:name="android.intent.action.MAIN" />
74 <category android:name="android.intent.category.LAUNCHER" /> 74 <category android:name="android.intent.category.LAUNCHER" />
75 </intent-filter> 75 </intent-filter>
76 <!-- Catch intents which do not specify a MIME type --> 76 <!-- Catch intents which do not specify a MIME type -->
77 <intent-filter> 77 <intent-filter>
78 <action android:name="android.intent.action.VIEW" /> 78 <action android:name="android.intent.action.VIEW" />
79 <category android:name="android.intent.category.DEFAULT" /> 79 <category android:name="android.intent.category.DEFAULT" />
80 <category android:name="android.intent.category.BROWSABLE" /> 80 <category android:name="android.intent.category.BROWSABLE" />
81 <data android:scheme="http" /> 81 <data android:scheme="http" />
(...skipping 27 matching lines...) Expand all
109 109
110 <activity 110 <activity
111 android:name="org.chromium.webview_shell.PageCyclerTestActivity" 111 android:name="org.chromium.webview_shell.PageCyclerTestActivity"
112 android:label="@string/title_activity_page_cycler" 112 android:label="@string/title_activity_page_cycler"
113 android:exported="true"> 113 android:exported="true">
114 </activity> 114 </activity>
115 115
116 <uses-library android:name="android.test.runner" /> 116 <uses-library android:name="android.test.runner" />
117 </application> 117 </application>
118 </manifest> 118 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698