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

Unified 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, 9 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 side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698