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

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

Issue 2974573002: Refactor WebApkServiceConnectionManager. (Closed)
Patch Set: Created 3 years, 5 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 9aa46e7793aa5f7d3290bbf7d176c961ed4affc6..977fc77149b9f39a5e5a3d2540a52cf096611713 100644
--- a/chrome/android/webapk/shell_apk/AndroidManifest.xml
+++ b/chrome/android/webapk/shell_apk/AndroidManifest.xml
@@ -71,5 +71,14 @@
android:process=":webapk_sandboxed_process2"
android:exported="true"
tools:ignore="ExportedService"/>
+ <service
+ android:name="org.chromium.webapk.shell_apk.IdentityService"
+ android:exported="true"
+ tools:ignore="ExportedService">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.WEBAPK_IDENTITY_SERVICE_API" />
Yaron 2017/07/10 18:09:07 org.chromium.WEBAPK_IDENTITY_SERVICE_API?
Xi Han 2017/07/12 13:49:14 org.webapk.IDENTITY_SERVICE_API?
+ </intent-filter>
+ </service>
</application>
</manifest>

Powered by Google App Engine
This is Rietveld 408576698