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

Side by Side Diff: chrome/android/shell/java/AndroidManifest.xml.jinja2

Issue 928643003: Upstream Chrome for Android Cast. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 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.chrome.shell"> 10 package="org.chromium.chrome.shell">
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 android:name="org.chromium.chrome.shell.preferences.ChromeShellP references" 62 android:name="org.chromium.chrome.shell.preferences.ChromeShellP references"
63 android:configChanges="orientation|keyboardHidden|keyboard|scree nSize" 63 android:configChanges="orientation|keyboardHidden|keyboard|scree nSize"
64 android:label="@string/preferences" 64 android:label="@string/preferences"
65 android:exported="false"> 65 android:exported="false">
66 <intent-filter> 66 <intent-filter>
67 <action android:name="android.intent.action.MAIN" /> 67 <action android:name="android.intent.action.MAIN" />
68 <category android:name="android.intent.category.DEFAULT" /> 68 <category android:name="android.intent.category.DEFAULT" />
69 <category android:name="android.intent.category.NOTIFICATION_PRE FERENCES" /> 69 <category android:name="android.intent.category.NOTIFICATION_PRE FERENCES" />
70 </intent-filter> 70 </intent-filter>
71 </activity> 71 </activity>
72 72
73 <!-- The following service entries exist in order to allow us to 73 <!-- The following service entries exist in order to allow us to
74 start more than one sandboxed process. --> 74 start more than one sandboxed process. -->
75 75
76 <!-- NOTE: If you change the value of "android:process" for the below se rvices, 76 <!-- NOTE: If you change the value of "android:process" for the below se rvices,
77 you also need to update kHelperProcessExecutableName in chrome_cons tants.cc. --> 77 you also need to update kHelperProcessExecutableName in chrome_cons tants.cc. -->
78 {% set num_sandboxed_services = 20 %} 78 {% set num_sandboxed_services = 20 %}
79 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES" 79 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES"
80 android:value="{{ num_sandboxed_services }}"/> 80 android:value="{{ num_sandboxed_services }}"/>
81 {% for i in range(num_sandboxed_services) %} 81 {% for i in range(num_sandboxed_services) %}
82 <service android:name="org.chromium.content.app.SandboxedProcessService{ { i }}" 82 <service android:name="org.chromium.content.app.SandboxedProcessService{ { i }}"
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 <intent-filter> 189 <intent-filter>
190 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / > 190 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / >
191 </intent-filter> 191 </intent-filter>
192 </receiver> 192 </receiver>
193 193
194 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R" 194 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R"
195 android:value="org.chromium.content.browser.SmartClipProvider " /> 195 android:value="org.chromium.content.browser.SmartClipProvider " />
196 <meta-data android:name="org.chromium.chrome.browser.SERVICE_TAB_LAUNCHE R" 196 <meta-data android:name="org.chromium.chrome.browser.SERVICE_TAB_LAUNCHE R"
197 android:value="org.chromium.chrome.shell.ChromeShellServiceTa bLauncher" /> 197 android:value="org.chromium.chrome.shell.ChromeShellServiceTa bLauncher" />
198 198
199 <!-- Activity, service, and meta-data to support casting to Chromecast - ->
200
201 <!-- Expanded controller activity is displayed when the Cast Notificatio n is clicked -->
202 <activity android:name="org.chromium.chrome.browser.media.remote.Expande dControllerActivity"
203 android:theme="@style/MainTheme"
204 android:label="Chrome.ExpandedControllerActivity"
205 android:hardwareAccelerated="true"
206 android:launchMode="singleTask"
207 android:noHistory="true"
208 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e"
209 android:excludeFromRecents="true">
210 </activity>
211
212 <service android:name="org.chromium.chrome.browser.media.remote.Notifica tionTransportControl$ListenerService" />
213
214 <!-- Media route controllers to use for remote playback (cast).
215 This is here, rather than in code, since it varies between upstream and downstream,
216 yet we need this list of classes in the notification service, which belongs upstream
217 and doesn't run the downstream Clank startup code. The Cast code wi ll, for each media element,
218 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
219 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones -->
220 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
221 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
222
223
199 </application> 224 </application>
200 </manifest> 225 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698