| Index: chrome/android/shell/java/AndroidManifest.xml.jinja2
|
| diff --git a/chrome/android/shell/java/AndroidManifest.xml.jinja2 b/chrome/android/shell/java/AndroidManifest.xml.jinja2
|
| index 49c7bae24785f584fec8f97e08bb0723c1e8bb21..ce06f8ffcbb186c88aae7830146a5bff07dbf166 100644
|
| --- a/chrome/android/shell/java/AndroidManifest.xml.jinja2
|
| +++ b/chrome/android/shell/java/AndroidManifest.xml.jinja2
|
| @@ -192,6 +192,17 @@
|
| <meta-data android:name="org.chromium.chrome.browser.SERVICE_TAB_LAUNCHER"
|
| android:value="org.chromium.chrome.shell.ChromeShellServiceTabLauncher" />
|
|
|
| + <!-- Precache service. -->
|
| + <service android:name="org.chromium.chrome.browser.precache.PrecacheService"
|
| + android:exported="false" />
|
| + <receiver android:name="org.chromium.chrome.browser.precache.PrecacheServiceLauncher">
|
| + <intent-filter>
|
| + <action android:name="android.intent.action.ACTION_POWER_CONNECTED"/>
|
| + <action android:name="android.intent.action.ACTION_POWER_DISCONNECTED"/>
|
| + <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
| + </intent-filter>
|
| + </receiver>
|
| +
|
| <!-- Activity, service, and meta-data to support casting to Chromecast -->
|
|
|
| <!-- Expanded controller activity is displayed when the Cast Notification is clicked -->
|
| @@ -215,7 +226,5 @@
|
| The most specific MediaRouteControllers should be listed first, followed by more generic ones -->
|
| <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYERS"
|
| android:value="org.chromium.chrome.browser.media.remote.DefaultMediaRouteController"/>
|
| -
|
| -
|
| </application>
|
| </manifest>
|
|
|