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

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

Issue 1234643002: customtabs: Convert to the new AIDL interface, temporarily imported. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added VisibleForTesting to util only used for testing Created 5 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 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 </intent-filter> 533 </intent-filter>
534 </receiver> 534 </receiver>
535 535
536 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService" 536 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService"
537 android:exported="true" 537 android:exported="true"
538 tools:ignore="ExportedService" /> 538 tools:ignore="ExportedService" />
539 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs ConnectionService" 539 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs ConnectionService"
540 android:exported="{{ 'true' if channel in ['dev', 'canary', 'defaul t'] else 'false' }}" 540 android:exported="{{ 'true' if channel in ['dev', 'canary', 'defaul t'] else 'false' }}"
541 tools:ignore="ExportedService"> 541 tools:ignore="ExportedService">
542 <intent-filter> 542 <intent-filter>
543 <action android:name="android.intent.action.MAIN" /> 543 <action android:name="android.support.customtabs.action.CustomTabs Service" />
544 <category android:name="android.intent.category.CUSTOM_TABS" />
545 </intent-filter> 544 </intent-filter>
546 </service> 545 </service>
547 <service android:name="org.chromium.chrome.browser.crash.LogcatExtractio nService" 546 <service android:name="org.chromium.chrome.browser.crash.LogcatExtractio nService"
548 android:exported="false"/> 547 android:exported="false"/>
549 <service android:name="org.chromium.chrome.browser.crash.MinidumpPrepara tionService" 548 <service android:name="org.chromium.chrome.browser.crash.MinidumpPrepara tionService"
550 android:exported="false"/> 549 android:exported="false"/>
551 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS ervice" 550 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS ervice"
552 android:exported="false"/> 551 android:exported="false"/>
553 552
554 <service android:name="org.chromium.chrome.browser.omaha.OmahaClient" 553 <service android:name="org.chromium.chrome.browser.omaha.OmahaClient"
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 620 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
622 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 621 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
623 The downstream manifest replaces this block, and hence replaces the list of media route 622 The downstream manifest replaces this block, and hence replaces the list of media route
624 controllers with its own list. --> 623 controllers with its own list. -->
625 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 624 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
626 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 625 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
627 626
628 {% endblock %} 627 {% endblock %}
629 </application> 628 </application>
630 </manifest> 629 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698