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

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

Powered by Google App Engine
This is Rietveld 408576698