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

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

Issue 2690163008: Route through a JobService when receiving a message for the GCM Driver (Closed)
Patch Set: Route through a JobService when receiving a message for the GCM Driver Created 3 years, 10 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 762 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 <action android:name="org.chromium.chrome.browser.notifications. CLICK_NOTIFICATION" /> 773 <action android:name="org.chromium.chrome.browser.notifications. CLICK_NOTIFICATION" />
774 <action android:name="org.chromium.chrome.browser.notifications. CLOSE_NOTIFICATION" /> 774 <action android:name="org.chromium.chrome.browser.notifications. CLOSE_NOTIFICATION" />
775 </intent-filter> 775 </intent-filter>
776 </receiver> 776 </receiver>
777 777
778 <!-- Android Notification job service --> 778 <!-- Android Notification job service -->
779 <service android:name="org.chromium.chrome.browser.notifications.Notific ationJobService" 779 <service android:name="org.chromium.chrome.browser.notifications.Notific ationJobService"
780 android:exported="false" 780 android:exported="false"
781 android:permission="android.permission.BIND_JOB_SERVICE"/> 781 android:permission="android.permission.BIND_JOB_SERVICE"/>
782 782
783 <!-- Android GCM Driver job service -->
784 <service android:name="org.chromium.chrome.browser.services.gcm.GCMJobSe rvice"
785 android:exported="false"
786 android:permission="android.permission.BIND_JOB_SERVICE"/>
787
783 <!-- GcmTaskService implementation to wake Chrome on scheduled events -- > 788 <!-- GcmTaskService implementation to wake Chrome on scheduled events -- >
784 <service android:name="org.chromium.chrome.browser.ChromeBackgroundServi ce" 789 <service android:name="org.chromium.chrome.browser.ChromeBackgroundServi ce"
785 android:permission="com.google.android.gms.permission.BIND_NETWORK_T ASK_SERVICE" 790 android:permission="com.google.android.gms.permission.BIND_NETWORK_T ASK_SERVICE"
786 android:exported="true"> 791 android:exported="true">
787 <intent-filter> 792 <intent-filter>
788 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA DY" /> 793 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA DY" />
789 </intent-filter> 794 </intent-filter>
790 </service> 795 </service>
791 796
792 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService" 797 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService"
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
949 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 954 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
950 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 955 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
951 The downstream manifest replaces this block, and hence replaces the list of media route 956 The downstream manifest replaces this block, and hence replaces the list of media route
952 controllers with its own list. --> 957 controllers with its own list. -->
953 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 958 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
954 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 959 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
955 960
956 {% endblock %} 961 {% endblock %}
957 </application> 962 </application>
958 </manifest> 963 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698