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

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

Issue 1324173002: [Background Sync] Use GcmNetworkManager to start the browser for sync events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@bgsync-fix-background5
Patch Set: Move the BackgroundSyncLauncher into /chrome Created 5 years, 2 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 27 matching lines...) Expand all
38 38
39 <uses-permission android:name="android.permission.CAMERA" /> 39 <uses-permission android:name="android.permission.CAMERA" />
40 <uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICAT ION" /> 40 <uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICAT ION" />
41 <uses-permission android:name="android.permission.GET_ACCOUNTS"/> 41 <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
42 <uses-permission android:name="android.permission.INTERNET"/> 42 <uses-permission android:name="android.permission.INTERNET"/>
43 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/> 43 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/>
44 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/> 44 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
45 <uses-permission android:name="android.permission.NFC"/> 45 <uses-permission android:name="android.permission.NFC"/>
46 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS"/> 46 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS"/>
47 <uses-permission android:name="android.permission.READ_SYNC_STATS"/> 47 <uses-permission android:name="android.permission.READ_SYNC_STATS"/>
48 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
48 <uses-permission android:name="android.permission.RECORD_AUDIO"/> 49 <uses-permission android:name="android.permission.RECORD_AUDIO"/>
49 <uses-permission android:name="android.permission.USE_CREDENTIALS"/> 50 <uses-permission android:name="android.permission.USE_CREDENTIALS"/>
50 <uses-permission android:name="android.permission.VIBRATE"/> 51 <uses-permission android:name="android.permission.VIBRATE"/>
51 <uses-permission android:name="android.permission.WAKE_LOCK"/> 52 <uses-permission android:name="android.permission.WAKE_LOCK"/>
52 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 53 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
53 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS"/> 54 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS"/>
54 55
55 <permission android:name="{{ manifest_package }}.permission.CHILD_SERVICE" a ndroid:protectionLevel="signature" /> 56 <permission android:name="{{ manifest_package }}.permission.CHILD_SERVICE" a ndroid:protectionLevel="signature" />
56 <permission android:name="{{ manifest_package }}.permission.READ_WRITE_BOOKM ARK_FOLDERS" android:protectionLevel="signatureOrSystem" /> 57 <permission android:name="{{ manifest_package }}.permission.READ_WRITE_BOOKM ARK_FOLDERS" android:protectionLevel="signatureOrSystem" />
57 <permission android:name="{{ manifest_package }}.TOS_ACKED" android:protecti onLevel="signatureOrSystem" /> 58 <permission android:name="{{ manifest_package }}.TOS_ACKED" android:protecti onLevel="signatureOrSystem" />
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 <service android:name="org.chromium.chrome.browser.notifications.Notific ationService" 551 <service android:name="org.chromium.chrome.browser.notifications.Notific ationService"
551 android:exported="false"/> 552 android:exported="false"/>
552 <receiver android:name="org.chromium.chrome.browser.notifications.Notifi cationService$Receiver" 553 <receiver android:name="org.chromium.chrome.browser.notifications.Notifi cationService$Receiver"
553 android:exported="false"> 554 android:exported="false">
554 <intent-filter> 555 <intent-filter>
555 <action android:name="org.chromium.chrome.browser.notifications. CLICK_NOTIFICATION" /> 556 <action android:name="org.chromium.chrome.browser.notifications. CLICK_NOTIFICATION" />
556 <action android:name="org.chromium.chrome.browser.notifications. CLOSE_NOTIFICATION" /> 557 <action android:name="org.chromium.chrome.browser.notifications. CLOSE_NOTIFICATION" />
557 </intent-filter> 558 </intent-filter>
558 </receiver> 559 </receiver>
559 560
560 <!-- Service Worker Background Sync service listener --> 561 <!-- Service Worker Background Sync GCM scheduler task -->
561 <service android:name="org.chromium.content.browser.BackgroundSyncLaunch erService" 562 <service android:name="org.chromium.chrome.browser.BackgroundSyncLaunche rService"
562 android:exported="false" /> 563 android:permission="com.google.android.gms.permission.BIND_NETWORK_T ASK_SERVICE"
563 <receiver android:name="org.chromium.content.browser.BackgroundSyncLaunc herService$Receiver"> 564 android:exported="true">
564 <intent-filter> 565 <intent-filter>
565 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> 566 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA DY" />
566 </intent-filter> 567 </intent-filter>
567 </receiver> 568 </service>
568 569
569 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService" 570 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService"
570 android:exported="true" 571 android:exported="true"
571 tools:ignore="ExportedService" /> 572 tools:ignore="ExportedService" />
572 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs ConnectionService" 573 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs ConnectionService"
573 android:exported="true" 574 android:exported="true"
574 tools:ignore="ExportedService"> 575 tools:ignore="ExportedService">
575 <intent-filter> 576 <intent-filter>
576 <action android:name="android.support.customtabs.action.CustomTabs Service" /> 577 <action android:name="android.support.customtabs.action.CustomTabs Service" />
577 </intent-filter> 578 </intent-filter>
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
664 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 665 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
665 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 666 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
666 The downstream manifest replaces this block, and hence replaces the list of media route 667 The downstream manifest replaces this block, and hence replaces the list of media route
667 controllers with its own list. --> 668 controllers with its own list. -->
668 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 669 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
669 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 670 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
670 671
671 {% endblock %} 672 {% endblock %}
672 </application> 673 </application>
673 </manifest> 674 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698