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 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
501 | 501 |
502 <!-- This activity is used to restart the main Chrome process. Should n
ever be exported. --> | 502 <!-- This activity is used to restart the main Chrome process. Should n
ever be exported. --> |
503 <activity android:name="org.chromium.chrome.browser.BrowserRestartActivi
ty" | 503 <activity android:name="org.chromium.chrome.browser.BrowserRestartActivi
ty" |
504 android:launchMode="singleInstance" | 504 android:launchMode="singleInstance" |
505 android:exported="false" | 505 android:exported="false" |
506 android:theme="@android:style/Theme.Translucent.NoTitleBar" | 506 android:theme="@android:style/Theme.Translucent.NoTitleBar" |
507 android:excludeFromRecents="true" | 507 android:excludeFromRecents="true" |
508 android:process=":browser_restart_process"> | 508 android:process=":browser_restart_process"> |
509 </activity> | 509 </activity> |
510 | 510 |
| 511 <!-- This activity is to expose the print option via the generic Android
share action. --> |
| 512 <activity |
| 513 android:name="org.chromium.chrome.browser.printing.PrintShareActivit
y" |
| 514 android:icon="@drawable/print" |
| 515 android:label="@string/print_share_activity_title" |
| 516 android:enabled="false" |
| 517 android:excludeFromRecents="true" |
| 518 android:exported="true" |
| 519 android:noHistory="true" |
| 520 android:theme="@android:style/Theme.NoDisplay" |
| 521 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" > |
| 522 <intent-filter> |
| 523 <action android:name="android.intent.action.SEND" /> |
| 524 <category android:name="android.intent.category.DEFAULT" /> |
| 525 <data android:mimeType="text/plain" /> |
| 526 </intent-filter> |
| 527 </activity> |
| 528 |
511 <!-- Activity to list Physical Web Urls --> | 529 <!-- Activity to list Physical Web Urls --> |
512 <activity android:name="org.chromium.chrome.browser.physicalweb.ListUrls
Activity" | 530 <activity android:name="org.chromium.chrome.browser.physicalweb.ListUrls
Activity" |
513 android:label="@string/physical_web_list_urls_activity_title" | 531 android:label="@string/physical_web_list_urls_activity_title" |
514 android:theme="@style/PhysicalWebNearbyUrlsListStyle" | 532 android:theme="@style/PhysicalWebNearbyUrlsListStyle" |
515 android:autoRemoveFromRecents="true" | 533 android:autoRemoveFromRecents="true" |
516 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" | 534 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" |
517 android:exported="false" > | 535 android:exported="false" > |
518 </activity> | 536 </activity> |
519 | 537 |
520 <!-- Opt-in activity for Physical Web --> | 538 <!-- Opt-in activity for Physical Web --> |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
854 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 872 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
855 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 873 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
856 The downstream manifest replaces this block, and hence replaces the
list of media route | 874 The downstream manifest replaces this block, and hence replaces the
list of media route |
857 controllers with its own list. --> | 875 controllers with its own list. --> |
858 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 876 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
859 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 877 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
860 | 878 |
861 {% endblock %} | 879 {% endblock %} |
862 </application> | 880 </application> |
863 </manifest> | 881 </manifest> |
OLD | NEW |