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

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

Issue 2180293002: Remove the print option from the menu and make it a share destination. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 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
« no previous file with comments | « no previous file | chrome/android/java/res/drawable-hdpi/print.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 528
529 <!-- This activity is used to restart the main Chrome process. Should n ever be exported. --> 529 <!-- This activity is used to restart the main Chrome process. Should n ever be exported. -->
530 <activity android:name="org.chromium.chrome.browser.BrowserRestartActivi ty" 530 <activity android:name="org.chromium.chrome.browser.BrowserRestartActivi ty"
531 android:launchMode="singleInstance" 531 android:launchMode="singleInstance"
532 android:exported="false" 532 android:exported="false"
533 android:theme="@android:style/Theme.Translucent.NoTitleBar" 533 android:theme="@android:style/Theme.Translucent.NoTitleBar"
534 android:excludeFromRecents="true" 534 android:excludeFromRecents="true"
535 android:process=":browser_restart_process"> 535 android:process=":browser_restart_process">
536 </activity> 536 </activity>
537 537
538 <!-- This activity is to expose the print option via the generic Android share action. -->
539 <activity
540 android:name="org.chromium.chrome.browser.printing.PrintShareActivit y"
541 android:icon="@drawable/print"
542 android:label="@string/print_share_activity_title"
543 android:enabled="false"
544 android:excludeFromRecents="true"
545 android:exported="true"
546 android:noHistory="true"
547 android:theme="@android:style/Theme.NoDisplay"
548 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" >
549 <intent-filter>
550 <action android:name="android.intent.action.SEND" />
551 <category android:name="android.intent.category.DEFAULT" />
552 <data android:mimeType="text/plain" />
553 </intent-filter>
554 </activity>
555
538 <!-- Activity to list Physical Web Urls --> 556 <!-- Activity to list Physical Web Urls -->
539 <activity android:name="org.chromium.chrome.browser.physicalweb.ListUrls Activity" 557 <activity android:name="org.chromium.chrome.browser.physicalweb.ListUrls Activity"
540 android:label="@string/physical_web_list_urls_activity_title" 558 android:label="@string/physical_web_list_urls_activity_title"
541 android:theme="@style/PhysicalWebNearbyUrlsListStyle" 559 android:theme="@style/PhysicalWebNearbyUrlsListStyle"
542 android:autoRemoveFromRecents="true" 560 android:autoRemoveFromRecents="true"
543 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" 561 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"
544 android:exported="false" > 562 android:exported="false" >
545 </activity> 563 </activity>
546 564
547 <!-- Opt-in activity for Physical Web --> 565 <!-- Opt-in activity for Physical Web -->
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
885 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 903 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
886 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 904 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
887 The downstream manifest replaces this block, and hence replaces the list of media route 905 The downstream manifest replaces this block, and hence replaces the list of media route
888 controllers with its own list. --> 906 controllers with its own list. -->
889 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 907 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
890 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 908 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
891 909
892 {% endblock %} 910 {% endblock %}
893 </application> 911 </application>
894 </manifest> 912 </manifest>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/res/drawable-hdpi/print.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698