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

Side by Side Diff: chromecast/browser/android/apk/AndroidManifest.xml.jinja2

Issue 1191373010: Chromecast: fix Android lint warnings, which are now build errors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Created 5 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
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 2
3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 8 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
9 package="org.chromium.chromecast.shell"> 9 package="org.chromium.chromecast.shell">
10 10
(...skipping 30 matching lines...) Expand all
41 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES" 41 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES"
42 android:value="{{ num_privileged_services }}"/> 42 android:value="{{ num_privileged_services }}"/>
43 {% for i in range(num_privileged_services) %} 43 {% for i in range(num_privileged_services) %}
44 <service android:name="org.chromium.content.app.PrivilegedProcessService {{ i }}" 44 <service android:name="org.chromium.content.app.PrivilegedProcessService {{ i }}"
45 android:process=":privileged_process{{ i }}" 45 android:process=":privileged_process{{ i }}"
46 android:isolatedProcess="false" 46 android:isolatedProcess="false"
47 android:exported="false" /> 47 android:exported="false" />
48 {% endfor %} 48 {% endfor %}
49 </application> 49 </application>
50 50
51 <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="19" /> 51 <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="22" />
52 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 52 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
53 <uses-permission android:name="android.permission.INTERNET"/> 53 <uses-permission android:name="android.permission.INTERNET"/>
54 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> 54 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
55 <uses-permission android:name="android.permission.WAKE_LOCK"/> 55 <uses-permission android:name="android.permission.WAKE_LOCK"/>
56 56
57 </manifest> 57 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698