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

Side by Side Diff: chromecast/shell/android/apk/AndroidManifest.xml

Issue 615923003: Chromecast: removes android:permission="INTERNET" from manifest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
11 <permission android:name="org.chromium.chromecast.shell.permission.SANDBOX" 11 <permission android:name="org.chromium.chromecast.shell.permission.SANDBOX"
12 android:protectionLevel="signature" /> 12 android:protectionLevel="signature" />
13 13
14 <application android:name="org.chromium.chromecast.shell.CastApplication" 14 <application android:name="org.chromium.chromecast.shell.CastApplication"
15 android:icon="@mipmap/app_icon" 15 android:icon="@mipmap/app_icon"
16 android:label="@string/app_name"> 16 android:label="@string/app_name">
17 <activity android:name="org.chromium.chromecast.shell.CastShellActivity" 17 <activity android:name="org.chromium.chromecast.shell.CastShellActivity"
18 android:theme="@style/CastShellTheme" 18 android:theme="@style/CastShellTheme"
19 android:exported="true" 19 android:exported="true"
20 android:hardwareAccelerated="true" 20 android:hardwareAccelerated="true"
21 android:taskAffinity=".CastShellActivity" 21 android:taskAffinity=".CastShellActivity"
22 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" 22 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
23 android:excludeFromRecents="true" 23 android:excludeFromRecents="true"
24 android:noHistory="true" 24 android:noHistory="true">
25 android:permission="android.permission.INTERNET">
26 <intent-filter> 25 <intent-filter>
27 <action android:name="android.intent.action.MAIN"/> 26 <action android:name="android.intent.action.MAIN"/>
28 <category android:name="android.intent.category.LAUNCHER"/> 27 <category android:name="android.intent.category.LAUNCHER"/>
29 </intent-filter> 28 </intent-filter>
30 </activity> 29 </activity>
31 30
32 <!-- The following service entries exist in order to allow us to 31 <!-- The following service entries exist in order to allow us to
33 start more than one sandboxed process. --> 32 start more than one sandboxed process. -->
34 <service android:name="org.chromium.content.app.SandboxedProcessService0 " 33 <service android:name="org.chromium.content.app.SandboxedProcessService0 "
35 android:process=":sandboxed_process0" 34 android:process=":sandboxed_process0"
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 android:exported="false" /> 132 android:exported="false" />
134 </application> 133 </application>
135 134
136 <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="19" /> 135 <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="19" />
137 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 136 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
138 <uses-permission android:name="android.permission.INTERNET"/> 137 <uses-permission android:name="android.permission.INTERNET"/>
139 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> 138 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
140 <uses-permission android:name="android.permission.WAKE_LOCK"/> 139 <uses-permission android:name="android.permission.WAKE_LOCK"/>
141 140
142 </manifest> 141 </manifest>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698