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

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

Issue 1159113006: [Android] A prototype of the interactive media notification. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed Min's nits Created 5 years, 5 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 <service android:name="org.chromium.chrome.browser.precache.PrecacheServ ice" 210 <service android:name="org.chromium.chrome.browser.precache.PrecacheServ ice"
211 android:exported="false" /> 211 android:exported="false" />
212 <receiver android:name="org.chromium.chrome.browser.precache.PrecacheSer viceLauncher"> 212 <receiver android:name="org.chromium.chrome.browser.precache.PrecacheSer viceLauncher">
213 <intent-filter> 213 <intent-filter>
214 <action android:name="android.intent.action.ACTION_POWER_CONNECT ED"/> 214 <action android:name="android.intent.action.ACTION_POWER_CONNECT ED"/>
215 <action android:name="android.intent.action.ACTION_POWER_DISCONN ECTED"/> 215 <action android:name="android.intent.action.ACTION_POWER_DISCONN ECTED"/>
216 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> 216 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
217 </intent-filter> 217 </intent-filter>
218 </receiver> 218 </receiver>
219 219
220 <!-- Service for the media playback control notification -->
221 <service android:name="org.chromium.chrome.browser.media.ui.Notification MediaPlaybackControl$ListenerService"
222 android:exported="false" />
223
220 <!-- Activity, service, and meta-data to support casting to Chromecast - -> 224 <!-- Activity, service, and meta-data to support casting to Chromecast - ->
221 225
222 <!-- Expanded controller activity is displayed when the Cast Notificatio n is clicked --> 226 <!-- Expanded controller activity is displayed when the Cast Notificatio n is clicked -->
223 <activity android:name="org.chromium.chrome.browser.media.remote.Expande dControllerActivity" 227 <activity android:name="org.chromium.chrome.browser.media.remote.Expande dControllerActivity"
224 android:theme="@style/MainTheme" 228 android:theme="@style/MainTheme"
225 android:label="Chrome.ExpandedControllerActivity" 229 android:label="Chrome.ExpandedControllerActivity"
226 android:hardwareAccelerated="true" 230 android:hardwareAccelerated="true"
227 android:launchMode="singleTask" 231 android:launchMode="singleTask"
228 android:noHistory="true" 232 android:noHistory="true"
229 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e" 233 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e"
230 android:excludeFromRecents="true"> 234 android:excludeFromRecents="true">
231 </activity> 235 </activity>
232 236
233 <service android:name="org.chromium.chrome.browser.media.remote.Notifica tionTransportControl$ListenerService" /> 237 <service android:name="org.chromium.chrome.browser.media.remote.Notifica tionTransportControl$ListenerService" />
234 238
235 <!-- Media route controllers to use for remote playback (cast). 239 <!-- Media route controllers to use for remote playback (cast).
236 This is here, rather than in code, since it varies between upstream and downstream, 240 This is here, rather than in code, since it varies between upstream and downstream,
237 yet we need this list of classes in the notification service, which belongs upstream 241 yet we need this list of classes in the notification service, which belongs upstream
238 and doesn't run the downstream Clank startup code. The Cast code wi ll, for each media element, 242 and doesn't run the downstream Clank startup code. The Cast code wi ll, for each media element,
239 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 243 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
240 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones --> 244 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones -->
241 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 245 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
242 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 246 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
243 </application> 247 </application>
244 </manifest> 248 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698