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

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

Issue 2974573002: Refactor WebApkServiceConnectionManager. (Closed)
Patch Set: Call the callback on UI thread if bindService() fails. 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..3c83cc5abccb7611b3e553dd47b80d8ceb2a890f 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="org.webapk.IDENTITY_SERVICE_API" />
pkotwicz 2017/07/14 23:20:05 In order to be consistent with CustomTabs we shoul
Xi Han 2017/07/17 20:45:32 This is follow the pattern to launch the WebappLau
pkotwicz 2017/07/18 17:30:47 If we make a change we will need code to handle ol
Xi Han 2017/07/18 22:36:51 Sorry I misunderstood. I thought you want me to up
+ </intent-filter>
+ </service>
</application>
</manifest>

Powered by Google App Engine
This is Rietveld 408576698