| 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 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 533 <activity android:name="org.chromium.chrome.browser.media.remote.Expande
dControllerActivity" | 533 <activity android:name="org.chromium.chrome.browser.media.remote.Expande
dControllerActivity" |
| 534 android:theme="@style/MainTheme" | 534 android:theme="@style/MainTheme" |
| 535 android:label="Chrome.ExpandedControllerActivity" | 535 android:label="Chrome.ExpandedControllerActivity" |
| 536 android:hardwareAccelerated="true" | 536 android:hardwareAccelerated="true" |
| 537 android:launchMode="singleTask" | 537 android:launchMode="singleTask" |
| 538 android:noHistory="true" | 538 android:noHistory="true" |
| 539 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" | 539 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" |
| 540 android:excludeFromRecents="true"> | 540 android:excludeFromRecents="true"> |
| 541 </activity> | 541 </activity> |
| 542 | 542 |
| 543 <!-- This activity is started along with IncognitoDocumentActivity, so i
t also must | |
| 544 disable hardware acceleration. Besides, it doesn't have any UI. --> | |
| 545 <activity android:name="org.chromium.chrome.browser.document.CipherKeyAc
tivity" | |
| 546 android:launchMode="singleInstance" | |
| 547 android:theme="@android:style/Theme.Translucent.NoTitleBar" | |
| 548 android:excludeFromRecents="true" | |
| 549 android:hardwareAccelerated="false"> | |
| 550 </activity> | |
| 551 | |
| 552 <!-- This activity is used to restart the main Chrome process. Should n
ever be exported. --> | 543 <!-- This activity is used to restart the main Chrome process. Should n
ever be exported. --> |
| 553 <activity android:name="org.chromium.chrome.browser.BrowserRestartActivi
ty" | 544 <activity android:name="org.chromium.chrome.browser.BrowserRestartActivi
ty" |
| 554 android:launchMode="singleInstance" | 545 android:launchMode="singleInstance" |
| 555 android:exported="false" | 546 android:exported="false" |
| 556 android:theme="@android:style/Theme.Translucent.NoTitleBar" | 547 android:theme="@android:style/Theme.Translucent.NoTitleBar" |
| 557 android:excludeFromRecents="true" | 548 android:excludeFromRecents="true" |
| 558 android:process=":browser_restart_process"> | 549 android:process=":browser_restart_process"> |
| 559 </activity> | 550 </activity> |
| 560 | 551 |
| 561 <!-- This activity is to expose the print option via the generic Android
share action. --> | 552 <!-- This activity is to expose the print option via the generic Android
share action. --> |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 926 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 917 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 927 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 918 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 928 The downstream manifest replaces this block, and hence replaces the
list of media route | 919 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 929 controllers with its own list. --> | 920 controllers with its own list. --> |
| 930 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 921 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 931 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 922 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 932 | 923 |
| 933 {% endblock %} | 924 {% endblock %} |
| 934 </application> | 925 </application> |
| 935 </manifest> | 926 </manifest> |
| OLD | NEW |