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

Unified Diff: chromecast/shell/android/apk/AndroidManifest.xml

Issue 490603002: Chromecast: initial checkin of Android-based cast shell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added android DEPS (git cl presubmit doesn't check Java DEPS?) Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromecast/shell/android/DEPS ('k') | chromecast/shell/android/apk/res/layout/cast_shell_activity.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/shell/android/apk/AndroidManifest.xml
diff --git a/content/shell/android/linker_test_apk/AndroidManifest.xml b/chromecast/shell/android/apk/AndroidManifest.xml
similarity index 71%
copy from content/shell/android/linker_test_apk/AndroidManifest.xml
copy to chromecast/shell/android/apk/AndroidManifest.xml
index d95d206884827a5a419df907b1b6395e0cc3c973..63ad17c99ec06d39e1c904777e99642724b689b0 100644
--- a/content/shell/android/linker_test_apk/AndroidManifest.xml
+++ b/chromecast/shell/android/apk/AndroidManifest.xml
@@ -1,97 +1,99 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright 2013 The Chromium Authors. All rights reserved.
-
+<!-- Copyright 2014 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.chromium.chromium_linker_test_apk">
+ package="org.chromium.chromecast.shell">
- <permission android:name="org.chromium.content_shell.permission.SANDBOX"
- android:protectionLevel="signature" />
+ <permission android:name="org.chromium.chromecast.shell.permission.SANDBOX"
+ android:protectionLevel="signature" />
- <application android:name="ChromiumLinkerTestApplication"
- android:label="ChromiumLinkerTest">
- <activity android:name="ChromiumLinkerTestActivity"
- android:launchMode="singleTask"
- android:theme="@android:style/Theme.Holo.Light.NoActionBar"
+ <application android:name="org.chromium.chromecast.shell.CastApplication"
+ android:icon="@mipmap/app_icon"
+ android:label="@string/app_name">
+ <activity android:name="org.chromium.chromecast.shell.CastShellActivity"
+ android:theme="@style/CastShellTheme"
+ android:exported="true"
+ android:hardwareAccelerated="true"
+ android:taskAffinity=".CastShellActivity"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
- android:hardwareAccelerated="true">
+ android:excludeFromRecents="true"
+ android:noHistory="true"
+ android:permission="android.permission.INTERNET">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
+
<!-- The following service entries exist in order to allow us to
start more than one sandboxed process. -->
-
- <!-- NOTE: If you change the values of "android:process" for any of the below services,
- you also need to update kHelperProcessExecutableName in chrome_constants.cc. -->
<service android:name="org.chromium.content.app.SandboxedProcessService0"
android:process=":sandboxed_process0"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
+ android:permission="org.chromium.chromecast.shell.permission.SANDBOX"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService1"
android:process=":sandboxed_process1"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
+ android:permission="org.chromium.chromecast.shell.permission.SANDBOX"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService2"
android:process=":sandboxed_process2"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
+ android:permission="org.chromium.chromecast.shell.permission.SANDBOX"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService3"
android:process=":sandboxed_process3"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
+ android:permission="org.chromium.chromecast.shell.permission.SANDBOX"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService4"
android:process=":sandboxed_process4"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
+ android:permission="org.chromium.chromecast.shell.permission.SANDBOX"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService5"
android:process=":sandboxed_process5"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
+ android:permission="org.chromium.chromecast.shell.permission.SANDBOX"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService6"
android:process=":sandboxed_process6"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
+ android:permission="org.chromium.chromecast.shell.permission.SANDBOX"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService7"
android:process=":sandboxed_process7"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
+ android:permission="org.chromium.chromecast.shell.permission.SANDBOX"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService8"
android:process=":sandboxed_process8"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
+ android:permission="org.chromium.chromecast.shell.permission.SANDBOX"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService9"
android:process=":sandboxed_process9"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
+ android:permission="org.chromium.chromecast.shell.permission.SANDBOX"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService10"
android:process=":sandboxed_process10"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
+ android:permission="org.chromium.chromecast.shell.permission.SANDBOX"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService11"
android:process=":sandboxed_process11"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
+ android:permission="org.chromium.chromecast.shell.permission.SANDBOX"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService12"
android:process=":sandboxed_process12"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
+ android:permission="org.chromium.chromecast.shell.permission.SANDBOX"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService13"
@@ -131,14 +133,10 @@
android:exported="false" />
</application>
- <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="20" />
- <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
+ <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
- <uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.INTERNET"/>
- <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
- <uses-permission android:name="android.permission.RECORD_AUDIO"/>
- <uses-permission android:name="android.permission.VIBRATE"/>
+ <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
+
</manifest>
« no previous file with comments | « chromecast/shell/android/DEPS ('k') | chromecast/shell/android/apk/res/layout/cast_shell_activity.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698