| 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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize|uiMode" | 357 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize|uiMode" |
| 358 android:hardwareAccelerated="false" | 358 android:hardwareAccelerated="false" |
| 359 {% endblock %} | 359 {% endblock %} |
| 360 > | 360 > |
| 361 </activity> | 361 </activity> |
| 362 <activity android:name="org.chromium.chrome.browser.ChromeTabbedActivity
2" | 362 <activity android:name="org.chromium.chrome.browser.ChromeTabbedActivity
2" |
| 363 android:theme="@style/TabbedModeTheme" | 363 android:theme="@style/TabbedModeTheme" |
| 364 android:exported="false" | 364 android:exported="false" |
| 365 android:taskAffinity="{{ manifest_package }}.ChromeTabbedActivity2" | 365 android:taskAffinity="{{ manifest_package }}.ChromeTabbedActivity2" |
| 366 android:launchMode="singleTask" | 366 android:launchMode="singleTask" |
| 367 {{ self.chrome_activity_common() }}> | 367 {{ self.chrome_activity_common() }} |
| 368 {{ self.supports_video_persistence() }}> |
| 368 </activity> | 369 </activity> |
| 369 <activity android:name="org.chromium.chrome.browser.multiwindow.MultiIns
tanceChromeTabbedActivity" | 370 <activity android:name="org.chromium.chrome.browser.multiwindow.MultiIns
tanceChromeTabbedActivity" |
| 370 android:theme="@style/TabbedModeTheme" | 371 android:theme="@style/TabbedModeTheme" |
| 371 android:exported="false" | 372 android:exported="false" |
| 372 {{ self.chrome_activity_common() }}> | 373 {{ self.chrome_activity_common() }}> |
| 373 </activity> | 374 </activity> |
| 374 | 375 |
| 375 <activity android:name="org.chromium.chrome.browser.sync.ui.PassphraseAc
tivity" | 376 <activity android:name="org.chromium.chrome.browser.sync.ui.PassphraseAc
tivity" |
| 376 android:theme="@style/MainTheme" | 377 android:theme="@style/MainTheme" |
| 377 android:autoRemoveFromRecents="true"> | 378 android:autoRemoveFromRecents="true"> |
| (...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 951 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 952 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 952 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 953 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 953 The downstream manifest replaces this block, and hence replaces the
list of media route | 954 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 954 controllers with its own list. --> | 955 controllers with its own list. --> |
| 955 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 956 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 956 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 957 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 957 | 958 |
| 958 {% endblock %} | 959 {% endblock %} |
| 959 </application> | 960 </application> |
| 960 </manifest> | 961 </manifest> |
| OLD | NEW |