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

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

Issue 2833673003: 🔍 More consistent first run triggering (Closed)
Patch Set: Take out the FRE label 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
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"
387 android:launchMode="singleTop" 386 android:launchMode="singleTop"
388 android:autoRemoveFromRecents="true" 387 android:autoRemoveFromRecents="true"
389 android:windowSoftInputMode="stateHidden|adjustPan" 388 android:windowSoftInputMode="stateHidden|adjustPan"
390 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> 389 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize">
391 </activity> 390 </activity>
392 <activity android:name="org.chromium.chrome.browser.signin.AccountSignin Activity" 391 <activity android:name="org.chromium.chrome.browser.signin.AccountSignin Activity"
393 android:theme="@style/DialogWhenLarge" 392 android:theme="@style/DialogWhenLarge"
394 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> 393 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize">
395 </activity> 394 </activity>
396 <activity android:name="org.chromium.chrome.browser.preferences.Preferen ces" 395 <activity android:name="org.chromium.chrome.browser.preferences.Preferen ces"
(...skipping 558 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. 954 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. 955 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 956 The downstream manifest replaces this block, and hence replaces the list of media route
958 controllers with its own list. --> 957 controllers with its own list. -->
959 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 958 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
960 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 959 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
961 960
962 {% endblock %} 961 {% endblock %}
963 </application> 962 </application>
964 </manifest> 963 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698