| OLD | NEW |
| 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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 android:windowSoftInputMode="adjustResize" | 368 android:windowSoftInputMode="adjustResize" |
| 369 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" | 369 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" |
| 370 android:hardwareAccelerated="false"> | 370 android:hardwareAccelerated="false"> |
| 371 </activity> | 371 </activity> |
| 372 | 372 |
| 373 <activity android:name="org.chromium.chrome.browser.sync.ui.PassphraseAc
tivity" | 373 <activity android:name="org.chromium.chrome.browser.sync.ui.PassphraseAc
tivity" |
| 374 android:theme="@style/MainTheme" | 374 android:theme="@style/MainTheme" |
| 375 android:autoRemoveFromRecents="true"> | 375 android:autoRemoveFromRecents="true"> |
| 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/LightweightFreDialog" | 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:label="@string/fre_label" |
| 387 android:launchMode="singleTop" | 387 android:launchMode="singleTop" |
| 388 android:autoRemoveFromRecents="true" | 388 android:autoRemoveFromRecents="true" |
| (...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 909 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 909 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 910 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 910 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 911 The downstream manifest replaces this block, and hence replaces the
list of media route | 911 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 912 controllers with its own list. --> | 912 controllers with its own list. --> |
| 913 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 913 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 914 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 914 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 915 | 915 |
| 916 {% endblock %} | 916 {% endblock %} |
| 917 </application> | 917 </application> |
| 918 </manifest> | 918 </manifest> |
| OLD | NEW |