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

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

Issue 1036363002: Reland of "precache: Move the java files into //components/precache/android" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 8 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 <intent-filter> 185 <intent-filter>
186 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / > 186 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / >
187 </intent-filter> 187 </intent-filter>
188 </receiver> 188 </receiver>
189 189
190 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R" 190 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R"
191 android:value="org.chromium.content.browser.SmartClipProvider " /> 191 android:value="org.chromium.content.browser.SmartClipProvider " />
192 <meta-data android:name="org.chromium.chrome.browser.SERVICE_TAB_LAUNCHE R" 192 <meta-data android:name="org.chromium.chrome.browser.SERVICE_TAB_LAUNCHE R"
193 android:value="org.chromium.chrome.shell.ChromeShellServiceTa bLauncher" /> 193 android:value="org.chromium.chrome.shell.ChromeShellServiceTa bLauncher" />
194 194
195 <!-- Precache service. -->
196 <service android:name="org.chromium.chrome.browser.precache.PrecacheServ ice"
197 android:exported="false" />
198 <receiver android:name="org.chromium.chrome.browser.precache.PrecacheSer viceLauncher">
199 <intent-filter>
200 <action android:name="android.intent.action.ACTION_POWER_CONNECT ED"/>
201 <action android:name="android.intent.action.ACTION_POWER_DISCONN ECTED"/>
202 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
203 </intent-filter>
204 </receiver>
205
195 <!-- Activity, service, and meta-data to support casting to Chromecast - -> 206 <!-- Activity, service, and meta-data to support casting to Chromecast - ->
196 207
197 <!-- Expanded controller activity is displayed when the Cast Notificatio n is clicked --> 208 <!-- Expanded controller activity is displayed when the Cast Notificatio n is clicked -->
198 <activity android:name="org.chromium.chrome.browser.media.remote.Expande dControllerActivity" 209 <activity android:name="org.chromium.chrome.browser.media.remote.Expande dControllerActivity"
199 android:theme="@style/MainTheme" 210 android:theme="@style/MainTheme"
200 android:label="Chrome.ExpandedControllerActivity" 211 android:label="Chrome.ExpandedControllerActivity"
201 android:hardwareAccelerated="true" 212 android:hardwareAccelerated="true"
202 android:launchMode="singleTask" 213 android:launchMode="singleTask"
203 android:noHistory="true" 214 android:noHistory="true"
204 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e" 215 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e"
205 android:excludeFromRecents="true"> 216 android:excludeFromRecents="true">
206 </activity> 217 </activity>
207 218
208 <service android:name="org.chromium.chrome.browser.media.remote.Notifica tionTransportControl$ListenerService" /> 219 <service android:name="org.chromium.chrome.browser.media.remote.Notifica tionTransportControl$ListenerService" />
209 220
210 <!-- Media route controllers to use for remote playback (cast). 221 <!-- Media route controllers to use for remote playback (cast).
211 This is here, rather than in code, since it varies between upstream and downstream, 222 This is here, rather than in code, since it varies between upstream and downstream,
212 yet we need this list of classes in the notification service, which belongs upstream 223 yet we need this list of classes in the notification service, which belongs upstream
213 and doesn't run the downstream Clank startup code. The Cast code wi ll, for each media element, 224 and doesn't run the downstream Clank startup code. The Cast code wi ll, for each media element,
214 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 225 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
215 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones --> 226 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones -->
216 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 227 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
217 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 228 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
218
219
220 </application> 229 </application>
221 </manifest> 230 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698