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

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

Issue 2833673003: 🔍 More consistent first run triggering (Closed)
Patch Set: Rebased Created 3 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 | chrome/android/java/src/org/chromium/chrome/browser/ChromeActivity.java » ('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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 </activity> 376 </activity>
377 <activity android:name="org.chromium.chrome.browser.firstrun.Lightweight FirstRunActivity" 377 <activity android:name="org.chromium.chrome.browser.firstrun.Lightweight FirstRunActivity"
378 android:theme="@style/SimpleDialog" 378 android:theme="@style/SimpleDialog"
379 android:launchMode="singleTop" 379 android:launchMode="singleTop"
380 android:autoRemoveFromRecents="true" 380 android:autoRemoveFromRecents="true"
381 android:windowSoftInputMode="stateHidden|adjustPan" 381 android:windowSoftInputMode="stateHidden|adjustPan"
382 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> 382 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize">
383 </activity> 383 </activity>
384 <activity android:name="org.chromium.chrome.browser.firstrun.FirstRunAct ivity" 384 <activity android:name="org.chromium.chrome.browser.firstrun.FirstRunAct ivity"
385 android:theme="@style/DialogWhenLarge" 385 android:theme="@style/DialogWhenLarge"
386 android:label="@string/fre_label" 386 android:launchMode="singleInstance"
387 android:launchMode="singleTop" 387 android:excludeFromRecents="true"
388 android:autoRemoveFromRecents="true" 388 android:autoRemoveFromRecents="true"
389 android:windowSoftInputMode="stateHidden|adjustPan" 389 android:windowSoftInputMode="stateHidden|adjustPan"
390 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> 390 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize">
391 </activity> 391 </activity>
392 <activity android:name="org.chromium.chrome.browser.signin.AccountSignin Activity" 392 <activity android:name="org.chromium.chrome.browser.signin.AccountSignin Activity"
393 android:theme="@style/DialogWhenLarge" 393 android:theme="@style/DialogWhenLarge"
394 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> 394 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize">
395 </activity> 395 </activity>
396 <activity android:name="org.chromium.chrome.browser.preferences.Preferen ces" 396 <activity android:name="org.chromium.chrome.browser.preferences.Preferen ces"
397 android:theme="@style/PreferencesTheme" 397 android:theme="@style/PreferencesTheme"
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
955 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 955 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
956 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 956 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
957 The downstream manifest replaces this block, and hence replaces the list of media route 957 The downstream manifest replaces this block, and hence replaces the list of media route
958 controllers with its own list. --> 958 controllers with its own list. -->
959 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 959 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
960 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 960 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
961 961
962 {% endblock %} 962 {% endblock %}
963 </application> 963 </application>
964 </manifest> 964 </manifest>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeActivity.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698