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

Side by Side Diff: content/shell/android/browsertests_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: Fix crash caused by zero-length launch window 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_browsertests_apk"> 10 package="org.chromium.content_browsertests_apk">
11 11
12 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" /> 12 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" />
13 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> 13 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
14 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 14 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
15 <uses-permission android:name="android.permission.CAMERA" /> 15 <uses-permission android:name="android.permission.CAMERA" />
16 <uses-permission android:name="android.permission.INTERNET"/> 16 <uses-permission android:name="android.permission.INTERNET"/>
17 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/> 17 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
18 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
18 <uses-permission android:name="android.permission.RECORD_AUDIO"/> 19 <uses-permission android:name="android.permission.RECORD_AUDIO"/>
19 <uses-permission android:name="android.permission.VIBRATE"/> 20 <uses-permission android:name="android.permission.VIBRATE"/>
20 <uses-permission android:name="android.permission.WAKE_LOCK"/> 21 <uses-permission android:name="android.permission.WAKE_LOCK"/>
21 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 22 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
22 23
23 <application android:name="ContentBrowserTestsApplication" 24 <application android:name="ContentBrowserTestsApplication"
24 android:label="ContentBrowserTests"> 25 android:label="ContentBrowserTests">
25 <activity android:name="ContentBrowserTestsActivity" 26 <activity android:name="ContentBrowserTestsActivity"
26 android:launchMode="singleTask" 27 android:launchMode="singleTask"
27 android:theme="@android:style/Theme.Holo.Light.NoActionBar" 28 android:theme="@android:style/Theme.Holo.Light.NoActionBar"
(...skipping 23 matching lines...) Expand all
51 {% set num_privileged_services = 3 %} 52 {% set num_privileged_services = 3 %}
52 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES" 53 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES"
53 android:value="{{ num_privileged_services }}"/> 54 android:value="{{ num_privileged_services }}"/>
54 {% for i in range(num_privileged_services) %} 55 {% for i in range(num_privileged_services) %}
55 <service android:name="org.chromium.content.app.PrivilegedProcessService {{ i }}" 56 <service android:name="org.chromium.content.app.PrivilegedProcessService {{ i }}"
56 android:process=":privileged_process{{ i }}" 57 android:process=":privileged_process{{ i }}"
57 android:isolatedProcess="false" 58 android:isolatedProcess="false"
58 android:exported="false" /> 59 android:exported="false" />
59 {% endfor %} 60 {% endfor %}
60 61
61 <!-- Service Worker Background Sync service listener --> 62 <!-- Service Worker Background Sync GCM scheduler task -->
62 <service android:name="org.chromium.content.browser.BackgroundSyncLaunch erService" 63 <service android:name="org.chromium.content.browser.BackgroundSyncLaunch erService"
63 android:exported="false" /> 64 android:permission="com.google.android.gms.permission.BIND_NETWORK_T ASK_SERVICE"
64 <receiver android:name="org.chromium.content.browser.BackgroundSyncLaunc herService$Receiver"> 65 android:exported="true">
65 <intent-filter> 66 <intent-filter>
66 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> 67 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA DY" />
67 </intent-filter> 68 </intent-filter>
68 </receiver> 69 </service>
69 70
70 </application> 71 </application>
71 72
72 <instrumentation android:name="org.chromium.native_test.NativeTestInstrument ationTestRunner" 73 <instrumentation android:name="org.chromium.native_test.NativeTestInstrument ationTestRunner"
73 android:label="ContentBrowserTests" 74 android:label="ContentBrowserTests"
74 android:targetPackage="org.chromium.content_browsertests_apk"/> 75 android:targetPackage="org.chromium.content_browsertests_apk"/>
75 </manifest> 76 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698