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

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

Issue 1172753002: Rename CustomTabs service related classes and interfaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 497 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 android:exported="false" /> 508 android:exported="false" />
509 <receiver android:name="org.chromium.content.browser.BackgroundSyncLaunc herService$Receiver"> 509 <receiver android:name="org.chromium.content.browser.BackgroundSyncLaunc herService$Receiver">
510 <intent-filter> 510 <intent-filter>
511 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> 511 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
512 </intent-filter> 512 </intent-filter>
513 </receiver> 513 </receiver>
514 514
515 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService" 515 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService"
516 android:exported="true" 516 android:exported="true"
517 tools:ignore="ExportedService" /> 517 tools:ignore="ExportedService" />
518 <service android:name="org.chromium.chrome.browser.customtabs.ChromeConn ectionService" 518 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs ConnectionService"
519 android:exported="{{ 'true' if channel in ['dev', 'canary', 'defaul t'] else 'false' }}" 519 android:exported="{{ 'true' if channel in ['dev', 'canary', 'defaul t'] else 'false' }}"
520 tools:ignore="ExportedService"> 520 tools:ignore="ExportedService">
521 <intent-filter> 521 <intent-filter>
522 <action android:name="android.intent.action.MAIN" /> 522 <action android:name="android.intent.action.MAIN" />
523 <category android:name="android.intent.category.CUSTOM_TABS" /> 523 <category android:name="android.intent.category.CUSTOM_TABS" />
524 </intent-filter> 524 </intent-filter>
525 </service> 525 </service>
526 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS ervice" 526 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS ervice"
527 android:exported="false"/> 527 android:exported="false"/>
528 528
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R" 583 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R"
584 android:value="org.chromium.content.browser.SmartClipProvider"/> 584 android:value="org.chromium.content.browser.SmartClipProvider"/>
585 <meta-data android:name="org.chromium.components.service_tab_launcher.SE RVICE_TAB_LAUNCHER" 585 <meta-data android:name="org.chromium.components.service_tab_launcher.SE RVICE_TAB_LAUNCHER"
586 android:value="org.chromium.chrome.browser.ChromeServiceTabLa uncher" /> 586 android:value="org.chromium.chrome.browser.ChromeServiceTabLa uncher" />
587 587
588 {% block extra_application_definitions %} 588 {% block extra_application_definitions %}
589 {% endblock %} 589 {% endblock %}
590 </application> 590 </application>
591 </manifest> 591 </manifest>
592 592
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698