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

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

Issue 1699143002: [NTP Snippets] Schedule periodic fetching (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@snippets_feature
Patch Set: Created 4 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 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 581
582 <!-- Service Worker Background Sync GCM scheduler task --> 582 <!-- Service Worker Background Sync GCM scheduler task -->
583 <service android:name="org.chromium.chrome.browser.BackgroundSyncLaunche rService" 583 <service android:name="org.chromium.chrome.browser.BackgroundSyncLaunche rService"
584 android:permission="com.google.android.gms.permission.BIND_NETWORK_T ASK_SERVICE" 584 android:permission="com.google.android.gms.permission.BIND_NETWORK_T ASK_SERVICE"
585 android:exported="true"> 585 android:exported="true">
586 <intent-filter> 586 <intent-filter>
587 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA DY" /> 587 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA DY" />
588 </intent-filter> 588 </intent-filter>
589 </service> 589 </service>
590 590
591 <!-- NTP Snippets GCM scheduler task -->
592 <service android:name="org.chromium.chrome.browser.ntp.snippets.Snippets LauncherService"
593 android:permission="com.google.android.gms.permission.BIND_NETWORK_T ASK_SERVICE"
594 android:exported="true">
595 <intent-filter>
596 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA DY" />
597 </intent-filter>
598 </service>
599
591 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService" 600 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService"
592 android:exported="true" 601 android:exported="true"
593 tools:ignore="ExportedService" /> 602 tools:ignore="ExportedService" />
594 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs ConnectionService" 603 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs ConnectionService"
595 android:exported="true" 604 android:exported="true"
596 tools:ignore="ExportedService"> 605 tools:ignore="ExportedService">
597 <intent-filter> 606 <intent-filter>
598 <action android:name="android.support.customtabs.action.CustomTabs Service" /> 607 <action android:name="android.support.customtabs.action.CustomTabs Service" />
599 </intent-filter> 608 </intent-filter>
600 </service> 609 </service>
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
724 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 733 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
725 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 734 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
726 The downstream manifest replaces this block, and hence replaces the list of media route 735 The downstream manifest replaces this block, and hence replaces the list of media route
727 controllers with its own list. --> 736 controllers with its own list. -->
728 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 737 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
729 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 738 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
730 739
731 {% endblock %} 740 {% endblock %}
732 </application> 741 </application>
733 </manifest> 742 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698