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

Unified Diff: content/shell/android/aura_shell_apk/AndroidManifest.xml.jinja2

Issue 1469803006: NOT FOR REVIEW: Aura Android: Content Shell compiles (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@auraclank_upstream_wthandroid
Patch Set: Temp Created 5 years 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
« no previous file with comments | « content/shell/android/BUILD.gn ('k') | content/shell/android/aura_shell_apk/res/values/strings.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/android/aura_shell_apk/AndroidManifest.xml.jinja2
diff --git a/content/shell/android/shell_apk/AndroidManifest.xml.jinja2 b/content/shell/android/aura_shell_apk/AndroidManifest.xml.jinja2
similarity index 86%
copy from content/shell/android/shell_apk/AndroidManifest.xml.jinja2
copy to content/shell/android/aura_shell_apk/AndroidManifest.xml.jinja2
index f2e149f4a2aacc6dc2e1022911125500e47c8228..42e4e4ab797de9aa6d4cea6997fbd788b01c13ae 100644
--- a/content/shell/android/shell_apk/AndroidManifest.xml.jinja2
+++ b/content/shell/android/aura_shell_apk/AndroidManifest.xml.jinja2
@@ -7,9 +7,9 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.chromium.content_shell_apk">
+ package="org.chromium.aura_content_shell_apk">
- <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" />
+ <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.CAMERA"/>
@@ -61,5 +61,14 @@
<meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDER"
android:value="org.chromium.content.browser.SmartClipProvider" />
+ <!-- Service Worker Background Sync service listener -->
+ <service android:name="org.chromium.content.browser.BackgroundSyncLauncherService"
+ android:exported="false" />
+ <receiver android:name="org.chromium.content.browser.BackgroundSyncLauncherService$Receiver">
+ <intent-filter>
+ <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
+ </intent-filter>
+ </receiver>
+
</application>
</manifest>
« no previous file with comments | « content/shell/android/BUILD.gn ('k') | content/shell/android/aura_shell_apk/res/values/strings.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698