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

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

Issue 2642333003: Dynamically register the power broadcast receiver. (Closed)
Patch Set: Assert on UI thread for creation 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 859 matching lines...) Expand 10 before | Expand all | Expand 10 after
870 </intent-filter> 870 </intent-filter>
871 </receiver> 871 </receiver>
872 872
873 <receiver android:name="org.chromium.chrome.browser.ntp.ContentSuggestio nsNotificationHelper$OpenUrlReceiver" 873 <receiver android:name="org.chromium.chrome.browser.ntp.ContentSuggestio nsNotificationHelper$OpenUrlReceiver"
874 android:exported="false"/> 874 android:exported="false"/>
875 <receiver android:name="org.chromium.chrome.browser.ntp.ContentSuggestio nsNotificationHelper$DeleteReceiver" 875 <receiver android:name="org.chromium.chrome.browser.ntp.ContentSuggestio nsNotificationHelper$DeleteReceiver"
876 android:exported="false"/> 876 android:exported="false"/>
877 <receiver android:name="org.chromium.chrome.browser.ntp.ContentSuggestio nsNotificationHelper$TimeoutReceiver" 877 <receiver android:name="org.chromium.chrome.browser.ntp.ContentSuggestio nsNotificationHelper$TimeoutReceiver"
878 android:exported="false"/> 878 android:exported="false"/>
879 879
880 <receiver android:name="org.chromium.base.PowerStatusReceiver">
881 <intent-filter>
882 <action android:name="android.intent.action.ACTION_POWER_CONNECT ED"/>
883 <action android:name="android.intent.action.ACTION_POWER_DISCONN ECTED"/>
884 </intent-filter>
885 </receiver>
886
887 <service android:name="org.chromium.chrome.browser.media.MediaCaptureNot ificationService" 880 <service android:name="org.chromium.chrome.browser.media.MediaCaptureNot ificationService"
888 android:exported="false"/> 881 android:exported="false"/>
889 <service android:name="org.chromium.chrome.browser.media.ui.MediaNotific ationManager$PlaybackListenerService" 882 <service android:name="org.chromium.chrome.browser.media.ui.MediaNotific ationManager$PlaybackListenerService"
890 android:exported="false"> 883 android:exported="false">
891 <intent-filter> 884 <intent-filter>
892 <action android:name="android.intent.action.MEDIA_BUTTON" /> 885 <action android:name="android.intent.action.MEDIA_BUTTON" />
893 </intent-filter> 886 </intent-filter>
894 </service> 887 </service>
895 <service android:name="org.chromium.chrome.browser.media.ui.MediaNotific ationManager$PresentationListenerService" 888 <service android:name="org.chromium.chrome.browser.media.ui.MediaNotific ationManager$PresentationListenerService"
896 android:exported="false"> 889 android:exported="false">
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
971 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.
972 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.
973 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
974 controllers with its own list. --> 967 controllers with its own list. -->
975 <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"
976 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 969 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
977 970
978 {% endblock %} 971 {% endblock %}
979 </application> 972 </application>
980 </manifest> 973 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698