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

Unified Diff: chrome/android/webapk/shell_apk/AndroidManifest.xml

Issue 1969303002: Upstream WebAPK notification related code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/webapk/shell_apk/AndroidManifest.xml
diff --git a/chrome/android/webapk/shell_apk/AndroidManifest.xml b/chrome/android/webapk/shell_apk/AndroidManifest.xml
index baf1d5e3032ac23776a6433ba8033ef39014b14d..a9a74504533f11de2348d0b5e817b9508989fd78 100644
--- a/chrome/android/webapk/shell_apk/AndroidManifest.xml
+++ b/chrome/android/webapk/shell_apk/AndroidManifest.xml
@@ -33,5 +33,13 @@
<meta-data android:name="hostUrl" android:value="{{ host_url }}" />
<meta-data android:name="mac" android:value="{{ mac }}" />
<meta-data android:name="scope" android:value="{{ scope_url }}" />
+ <service
+ android:name="org.chromium.webapk.shell_apk.WebApkServiceFactory"
+ android:exported="true">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.WEBAPK_API" />
+ </intent-filter>
+ </service>
</application>
</manifest>

Powered by Google App Engine
This is Rietveld 408576698