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

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

Issue 2068733002: Fix manifest reference to cache invalidation alarm receiver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Back to first patch Created 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 625 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 <intent-filter> 636 <intent-filter>
637 <action android:name="com.google.ipc.invalidation.AUTH_TOKEN_REQUE ST"/> 637 <action android:name="com.google.ipc.invalidation.AUTH_TOKEN_REQUE ST"/>
638 </intent-filter> 638 </intent-filter>
639 </service> 639 </service>
640 <service android:name="com.google.ipc.invalidation.ticl.android2.TiclSer vice" 640 <service android:name="com.google.ipc.invalidation.ticl.android2.TiclSer vice"
641 android:exported="false"/> 641 android:exported="false"/>
642 <service android:name="com.google.ipc.invalidation.ticl.android2.channel .AndroidMessageSenderService" 642 <service android:name="com.google.ipc.invalidation.ticl.android2.channel .AndroidMessageSenderService"
643 android:exported="false"/> 643 android:exported="false"/>
644 <receiver android:name="com.google.ipc.invalidation.ticl.android2.Androi dInternalScheduler$AlarmReceiver" 644 <receiver android:name="com.google.ipc.invalidation.ticl.android2.Androi dInternalScheduler$AlarmReceiver"
645 android:exported="false"/> 645 android:exported="false"/>
646 <receiver android:name="com.google.ipc.invalidation.external.client2.con trib.AndroidListener$AlarmReceiver" 646 <receiver android:name="com.google.ipc.invalidation.external.client.cont rib.AndroidListener$AlarmReceiver"
647 android:exported="false"/> 647 android:exported="false"/>
648 648
649 <!-- Android Notification service listener --> 649 <!-- Android Notification service listener -->
650 <service android:name="org.chromium.chrome.browser.notifications.Notific ationService" 650 <service android:name="org.chromium.chrome.browser.notifications.Notific ationService"
651 android:exported="false"/> 651 android:exported="false"/>
652 <receiver android:name="org.chromium.chrome.browser.notifications.Notifi cationService$Receiver" 652 <receiver android:name="org.chromium.chrome.browser.notifications.Notifi cationService$Receiver"
653 android:exported="false"> 653 android:exported="false">
654 <intent-filter> 654 <intent-filter>
655 <action android:name="org.chromium.chrome.browser.notifications. CLICK_NOTIFICATION" /> 655 <action android:name="org.chromium.chrome.browser.notifications. CLICK_NOTIFICATION" />
656 <action android:name="org.chromium.chrome.browser.notifications. CLOSE_NOTIFICATION" /> 656 <action android:name="org.chromium.chrome.browser.notifications. CLOSE_NOTIFICATION" />
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 838 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
839 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 839 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
840 The downstream manifest replaces this block, and hence replaces the list of media route 840 The downstream manifest replaces this block, and hence replaces the list of media route
841 controllers with its own list. --> 841 controllers with its own list. -->
842 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 842 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
843 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 843 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
844 844
845 {% endblock %} 845 {% endblock %}
846 </application> 846 </application>
847 </manifest> 847 </manifest>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698