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

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

Issue 2143133002: Do screenshot capture async for share intents. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix packagename Created 4 years, 5 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
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 518 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 529
530 <!-- Provider for FileProvider. --> 530 <!-- Provider for FileProvider. -->
531 <provider android:name="org.chromium.chrome.browser.util.CompatibilityFi leProvider" 531 <provider android:name="org.chromium.chrome.browser.util.CompatibilityFi leProvider"
532 android:authorities="{{ manifest_package }}.FileProvider" 532 android:authorities="{{ manifest_package }}.FileProvider"
533 android:exported="false" 533 android:exported="false"
534 android:grantUriPermissions="true"> 534 android:grantUriPermissions="true">
535 <meta-data android:name="android.support.FILE_PROVIDER_PATHS" 535 <meta-data android:name="android.support.FILE_PROVIDER_PATHS"
536 android:resource="@xml/file_paths" /> 536 android:resource="@xml/file_paths" />
537 </provider> 537 </provider>
538 538
539 <provider android:name="org.chromium.chrome.browser.BlockingFileProvider "
540 android:authorities="{{ manifest_package }}.BlockingFileProvider"
541 android:exported="false"
542 android:grantUriPermissions="true">
543 <meta-data android:name="android.support.FILE_PROVIDER_PATHS"
544 android:resource="@xml/file_paths" />
545 </provider>
546
539 <provider android:name="org.chromium.chrome.browser.superviseduser.Super visedUserContentProvider" 547 <provider android:name="org.chromium.chrome.browser.superviseduser.Super visedUserContentProvider"
540 android:authorities="{{ manifest_package }}.SupervisedUserProvider" 548 android:authorities="{{ manifest_package }}.SupervisedUserProvider"
541 android:permission="android.permission.INTERNET" 549 android:permission="android.permission.INTERNET"
542 android:exported="true"> 550 android:exported="true">
543 </provider> 551 </provider>
544 552
545 <!-- Sync adapter for browser invalidation. --> 553 <!-- Sync adapter for browser invalidation. -->
546 <service android:name="org.chromium.chrome.browser.invalidation.ChromeBr owserSyncAdapterService" 554 <service android:name="org.chromium.chrome.browser.invalidation.ChromeBr owserSyncAdapterService"
547 android:exported="false"> 555 android:exported="false">
548 <intent-filter> 556 <intent-filter>
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
843 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 851 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
844 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 852 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
845 The downstream manifest replaces this block, and hence replaces the list of media route 853 The downstream manifest replaces this block, and hence replaces the list of media route
846 controllers with its own list. --> 854 controllers with its own list. -->
847 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 855 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
848 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 856 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
849 857
850 {% endblock %} 858 {% endblock %}
851 </application> 859 </application>
852 </manifest> 860 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698