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

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

Issue 638803002: Reorganizes Chromecast code to better reflect functional dependencies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: extra DEPS: chromecast/crash/android --> chromecast/common 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 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/chromecast/shell/android/apk/AndroidManifest.xml b/chromecast/shell/android/apk/AndroidManifest.xml
deleted file mode 100644
index 8084f8feaf1106608b256dc19ec67164ab293bda..0000000000000000000000000000000000000000
--- a/chromecast/shell/android/apk/AndroidManifest.xml
+++ /dev/null
@@ -1,141 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-
-<!-- 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.chromecast.shell">
-
- <permission android:name="org.chromium.chromecast.shell.permission.SANDBOX"
- android:protectionLevel="signature" />
-
- <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:excludeFromRecents="true"
- android:noHistory="true">
- <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. -->
- <service android:name="org.chromium.content.app.SandboxedProcessService0"
- android:process=":sandboxed_process0"
- 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.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.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.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.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.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.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.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.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.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.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.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.chromecast.shell.permission.SANDBOX"
- android:isolatedProcess="true"
- android:exported="false" />
- <service android:name="org.chromium.content.app.SandboxedProcessService13"
- android:process=":sandboxed_process13"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
- android:isolatedProcess="true"
- android:exported="false" />
- <service android:name="org.chromium.content.app.SandboxedProcessService14"
- android:process=":sandboxed_process14"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
- android:isolatedProcess="true"
- android:exported="false" />
- <service android:name="org.chromium.content.app.SandboxedProcessService15"
- android:process=":sandboxed_process15"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
- android:isolatedProcess="true"
- android:exported="false" />
- <service android:name="org.chromium.content.app.SandboxedProcessService16"
- android:process=":sandboxed_process16"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
- android:isolatedProcess="true"
- android:exported="false" />
- <service android:name="org.chromium.content.app.SandboxedProcessService17"
- android:process=":sandboxed_process17"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
- android:isolatedProcess="true"
- android:exported="false" />
- <service android:name="org.chromium.content.app.SandboxedProcessService18"
- android:process=":sandboxed_process18"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
- android:isolatedProcess="true"
- android:exported="false" />
- <service android:name="org.chromium.content.app.SandboxedProcessService19"
- android:process=":sandboxed_process19"
- android:permission="org.chromium.content_shell.permission.SANDBOX"
- android:isolatedProcess="true"
- android:exported="false" />
- </application>
-
- <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="19" />
- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
- <uses-permission android:name="android.permission.INTERNET"/>
- <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
- <uses-permission android:name="android.permission.WAKE_LOCK"/>
-
-</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