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

Side by Side Diff: chrome/android/java/AndroidManifest.xml

Issue 1817083003: Add pathway to auto-migrate users when Chrome launches (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@assassin
Patch Set: Comments Created 4 years, 9 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 | chrome/android/java/res/layout/upgrade_activity.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
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 Note: This is a jinja2 template, processed at build time into the final manifest . 7 Note: This is a jinja2 template, processed at build time into the final manifest .
8 8
9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden 9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden
10 by a child template that "extends" this file. 10 by a child template that "extends" this file.
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 </intent-filter> 194 </intent-filter>
195 <intent-filter> 195 <intent-filter>
196 <action android:name="android.intent.action.SEARCH" /> 196 <action android:name="android.intent.action.SEARCH" />
197 </intent-filter> 197 </intent-filter>
198 <intent-filter> 198 <intent-filter>
199 <action android:name="com.sec.android.airview.HOVER" /> 199 <action android:name="com.sec.android.airview.HOVER" />
200 </intent-filter> 200 </intent-filter>
201 <meta-data android:name="android.app.searchable" 201 <meta-data android:name="android.app.searchable"
202 android:resource="@xml/searchable" /> 202 android:resource="@xml/searchable" />
203 </activity-alias> 203 </activity-alias>
204
205 <!-- Upgrade related -->
206 <activity android:name="org.chromium.chrome.browser.UpgradeActivity"
207 android:excludeFromRecents="true"
208 android:theme="@style/MainTheme"
209 android:windowSoftInputMode="adjustResize"
210 android:taskAffinity=""
211 android:launchMode="singleInstance"
212 android:persistableMode="persistNever"
213 android:autoRemoveFromRecents="false"
214 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"
215 android:hardwareAccelerated="false">
216 </activity>
217
218 <!-- Document mode Activities. -->
204 <activity android:name="org.chromium.chrome.browser.document.DocumentAct ivity" 219 <activity android:name="org.chromium.chrome.browser.document.DocumentAct ivity"
205 android:exported="false" 220 android:exported="false"
206 android:theme="@style/MainTheme" 221 android:theme="@style/MainTheme"
207 android:windowSoftInputMode="adjustResize" 222 android:windowSoftInputMode="adjustResize"
208 android:taskAffinity="" 223 android:taskAffinity=""
209 android:persistableMode="persistAcrossReboots" 224 android:persistableMode="persistAcrossReboots"
210 android:autoRemoveFromRecents="false" 225 android:autoRemoveFromRecents="false"
211 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" 226 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"
212 android:hardwareAccelerated="false"> 227 android:hardwareAccelerated="false">
213 </activity> 228 </activity>
214 <activity-alias android:name="com.google.android.apps.chrome.document.Do cumentActivity" 229 <activity-alias android:name="com.google.android.apps.chrome.document.Do cumentActivity"
215 android:targetActivity="org.chromium.chrome.browser.document.Documen tActivity" 230 android:targetActivity="org.chromium.chrome.browser.document.Documen tActivity"
216 android:exported="false"/> 231 android:exported="false"/>
217 <activity android:name="org.chromium.chrome.browser.document.IncognitoDo cumentActivity" 232 <activity android:name="org.chromium.chrome.browser.document.IncognitoDo cumentActivity"
218 android:icon="@mipmap/incognito_app_icon" 233 android:icon="@mipmap/incognito_app_icon"
219 android:exported="false" 234 android:exported="false"
220 android:theme="@style/IncognitoTheme" 235 android:theme="@style/IncognitoTheme"
221 android:windowSoftInputMode="adjustResize" 236 android:windowSoftInputMode="adjustResize"
222 android:taskAffinity="" 237 android:taskAffinity=""
223 android:persistableMode="persistNever" 238 android:persistableMode="persistNever"
224 android:autoRemoveFromRecents="false" 239 android:autoRemoveFromRecents="false"
225 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" 240 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"
226 android:hardwareAccelerated="false"> 241 android:hardwareAccelerated="false">
227 </activity> 242 </activity>
228 <activity-alias android:name="com.google.android.apps.chrome.document.In cognitoDocumentActivity" 243 <activity-alias android:name="com.google.android.apps.chrome.document.In cognitoDocumentActivity"
229 android:targetActivity="org.chromium.chrome.browser.document.Incogni toDocumentActivity" 244 android:targetActivity="org.chromium.chrome.browser.document.Incogni toDocumentActivity"
230 android:exported="false"/> 245 android:exported="false"/>
246
247 <!-- Custom Tabs -->
231 <activity android:name="org.chromium.chrome.browser.customtabs.CustomTab Activity" 248 <activity android:name="org.chromium.chrome.browser.customtabs.CustomTab Activity"
232 android:theme="@style/MainTheme" 249 android:theme="@style/MainTheme"
233 android:exported="false" 250 android:exported="false"
234 android:windowSoftInputMode="adjustResize" 251 android:windowSoftInputMode="adjustResize"
235 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" 252 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"
236 android:hardwareAccelerated="false"> 253 android:hardwareAccelerated="false">
237 </activity> 254 </activity>
255
256 <!-- ChromeTabbedActivity related -->
238 <activity android:name="org.chromium.chrome.browser.ChromeTabbedActivity " 257 <activity android:name="org.chromium.chrome.browser.ChromeTabbedActivity "
239 android:theme="@style/MainTheme" 258 android:theme="@style/MainTheme"
240 android:exported="false" 259 android:exported="false"
241 android:windowBackground="@drawable/window_background" 260 android:windowBackground="@drawable/window_background"
242 android:windowSoftInputMode="adjustResize" 261 android:windowSoftInputMode="adjustResize"
243 android:launchMode="singleTask" 262 android:launchMode="singleTask"
244 android:configChanges="orientation|keyboardHidden|keyboard|screenSi ze|mcc|mnc|screenLayout|smallestScreenSize" 263 android:configChanges="orientation|keyboardHidden|keyboard|screenSi ze|mcc|mnc|screenLayout|smallestScreenSize"
245 android:hardwareAccelerated="false"> 264 android:hardwareAccelerated="false">
246 </activity> 265 </activity>
247 <activity android:name="org.chromium.chrome.browser.multiwindow.MultiIns tanceChromeTabbedActivity" 266 <activity android:name="org.chromium.chrome.browser.multiwindow.MultiIns tanceChromeTabbedActivity"
248 android:theme="@style/MainTheme" 267 android:theme="@style/MainTheme"
249 android:exported="false" 268 android:exported="false"
250 android:windowBackground="@drawable/window_background" 269 android:windowBackground="@drawable/window_background"
251 android:windowSoftInputMode="adjustResize" 270 android:windowSoftInputMode="adjustResize"
252 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" 271 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"
253 android:hardwareAccelerated="false"> 272 android:hardwareAccelerated="false">
254 </activity> 273 </activity>
274
255 <activity android:name="org.chromium.chrome.browser.sync.ui.PassphraseAc tivity" 275 <activity android:name="org.chromium.chrome.browser.sync.ui.PassphraseAc tivity"
256 android:theme="@style/MainTheme" 276 android:theme="@style/MainTheme"
257 android:autoRemoveFromRecents="true"> 277 android:autoRemoveFromRecents="true">
258 </activity> 278 </activity>
259 <activity android:name="org.chromium.chrome.browser.firstrun.FirstRunAct ivity" 279 <activity android:name="org.chromium.chrome.browser.firstrun.FirstRunAct ivity"
260 android:theme="@style/DialogWhenLarge" 280 android:theme="@style/DialogWhenLarge"
261 android:label="@string/fre_label" 281 android:label="@string/fre_label"
262 android:launchMode="singleTop" 282 android:launchMode="singleTop"
263 android:windowSoftInputMode="stateHidden|adjustPan" 283 android:windowSoftInputMode="stateHidden|adjustPan"
264 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> 284 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize">
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
763 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 783 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
764 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 784 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
765 The downstream manifest replaces this block, and hence replaces the list of media route 785 The downstream manifest replaces this block, and hence replaces the list of media route
766 controllers with its own list. --> 786 controllers with its own list. -->
767 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 787 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
768 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 788 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
769 789
770 {% endblock %} 790 {% endblock %}
771 </application> 791 </application>
772 </manifest> 792 </manifest>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/res/layout/upgrade_activity.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698