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

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

Issue 2611333002: Android web notifications: Schedule job instead of starting service (N+) (Closed)
Patch Set: Created 3 years, 11 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 768 matching lines...) Expand 10 before | Expand all | Expand 10 after
779 android:exported="false"/> 779 android:exported="false"/>
780 <service android:name="com.google.ipc.invalidation.ticl.android2.channel .AndroidMessageSenderService" 780 <service android:name="com.google.ipc.invalidation.ticl.android2.channel .AndroidMessageSenderService"
781 android:exported="false"/> 781 android:exported="false"/>
782 <receiver android:name="com.google.ipc.invalidation.ticl.android2.Androi dInternalScheduler$AlarmReceiver" 782 <receiver android:name="com.google.ipc.invalidation.ticl.android2.Androi dInternalScheduler$AlarmReceiver"
783 android:exported="false"/> 783 android:exported="false"/>
784 <receiver android:name="com.google.ipc.invalidation.external.client.cont rib.AndroidListener$AlarmReceiver" 784 <receiver android:name="com.google.ipc.invalidation.external.client.cont rib.AndroidListener$AlarmReceiver"
785 android:exported="false"/> 785 android:exported="false"/>
786 786
787 <!-- Android Notification service listener --> 787 <!-- Android Notification service listener -->
788 <service android:name="org.chromium.chrome.browser.notifications.Notific ationService" 788 <service android:name="org.chromium.chrome.browser.notifications.Notific ationService"
789 android:exported="false"/> 789 android:exported="false"
790 android:permission="android.permission.BIND_JOB_SERVICE"/>
Peter Beverloo 2017/01/09 14:28:05 This is API level 21, will it be ignored by earlie
awdf 2017/01/11 14:56:17 I think this would just be ignored. Still installs
790 <receiver android:name="org.chromium.chrome.browser.notifications.Notifi cationService$Receiver" 791 <receiver android:name="org.chromium.chrome.browser.notifications.Notifi cationService$Receiver"
791 android:exported="false"> 792 android:exported="false">
792 <intent-filter> 793 <intent-filter>
793 <action android:name="org.chromium.chrome.browser.notifications. CLICK_NOTIFICATION" /> 794 <action android:name="org.chromium.chrome.browser.notifications. CLICK_NOTIFICATION" />
794 <action android:name="org.chromium.chrome.browser.notifications. CLOSE_NOTIFICATION" /> 795 <action android:name="org.chromium.chrome.browser.notifications. CLOSE_NOTIFICATION" />
795 </intent-filter> 796 </intent-filter>
796 </receiver> 797 </receiver>
797 798
798 <!-- GcmTaskService implementation to wake Chrome on scheduled events -- > 799 <!-- GcmTaskService implementation to wake Chrome on scheduled events -- >
799 <service android:name="org.chromium.chrome.browser.ChromeBackgroundServi ce" 800 <service android:name="org.chromium.chrome.browser.ChromeBackgroundServi ce"
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
963 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 964 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
964 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 965 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
965 The downstream manifest replaces this block, and hence replaces the list of media route 966 The downstream manifest replaces this block, and hence replaces the list of media route
966 controllers with its own list. --> 967 controllers with its own list. -->
967 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 968 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
968 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 969 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
969 970
970 {% endblock %} 971 {% endblock %}
971 </application> 972 </application>
972 </manifest> 973 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698