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

Side by Side Diff: content/shell/android/shell_apk/AndroidManifest.xml.jinja2

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: Update remaining AndroidManifest.xml templates Created 5 years, 3 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 2
3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 4
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 8
9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 9 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
10 package="org.chromium.content_shell_apk"> 10 package="org.chromium.content_shell_apk">
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 android:value="{{ num_privileged_services }}"/> 54 android:value="{{ num_privileged_services }}"/>
55 {% for i in range(num_privileged_services) %} 55 {% for i in range(num_privileged_services) %}
56 <service android:name="org.chromium.content.app.PrivilegedProcessService {{ i }}" 56 <service android:name="org.chromium.content.app.PrivilegedProcessService {{ i }}"
57 android:process=":privileged_process{{ i }}" 57 android:process=":privileged_process{{ i }}"
58 android:isolatedProcess="false" 58 android:isolatedProcess="false"
59 android:exported="false" /> 59 android:exported="false" />
60 {% endfor %} 60 {% endfor %}
61 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R" 61 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R"
62 android:value="org.chromium.content.browser.SmartClipProvider " /> 62 android:value="org.chromium.content.browser.SmartClipProvider " />
63 63
64 <!-- Service Worker Background Sync service listener --> 64 <!-- Service Worker Background Sync GCM scheduler task -->
65 <service android:name="org.chromium.content.browser.BackgroundSyncLaunch erService" 65 <service android:name="org.chromium.content.browser.BackgroundSyncLaunch erService"
66 android:exported="false" /> 66 android:permission="com.google.android.gms.permission.BIND_NETWORK_T ASK_SERVICE"
67 <receiver android:name="org.chromium.content.browser.BackgroundSyncLaunc herService$Receiver"> 67 android:exported="true">
68 <intent-filter> 68 <intent-filter>
69 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> 69 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA DY" />
70 </intent-filter> 70 </intent-filter>
71 </receiver> 71 </service>
72 72
73 </application> 73 </application>
74 </manifest> 74 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698