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

Side by Side Diff: chrome/android/webapk/shell_apk/AndroidManifest.xml

Issue 2974573002: Refactor WebApkServiceConnectionManager. (Closed)
Patch Set: Clean up. 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 unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 6 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
7 xmlns:tools="http://schemas.android.com/tools" 7 xmlns:tools="http://schemas.android.com/tools"
8 package="{{{manifest_package}}}" 8 package="{{{manifest_package}}}"
9 android:versionCode="{{{version_code}}}" 9 android:versionCode="{{{version_code}}}"
10 android:versionName="{{{version_name}}}" > 10 android:versionName="{{{version_name}}}" >
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 <service android:name="org.chromium.webapk.shell_apk.WebApkSandboxedProc essService1" 64 <service android:name="org.chromium.webapk.shell_apk.WebApkSandboxedProc essService1"
65 android:isolatedProcess="true" 65 android:isolatedProcess="true"
66 android:process=":webapk_sandboxed_process1" 66 android:process=":webapk_sandboxed_process1"
67 android:exported="true" 67 android:exported="true"
68 tools:ignore="ExportedService"/> 68 tools:ignore="ExportedService"/>
69 <service android:name="org.chromium.webapk.shell_apk.WebApkSandboxedProc essService2" 69 <service android:name="org.chromium.webapk.shell_apk.WebApkSandboxedProc essService2"
70 android:isolatedProcess="true" 70 android:isolatedProcess="true"
71 android:process=":webapk_sandboxed_process2" 71 android:process=":webapk_sandboxed_process2"
72 android:exported="true" 72 android:exported="true"
73 tools:ignore="ExportedService"/> 73 tools:ignore="ExportedService"/>
74 <service
75 android:name="org.chromium.webapk.shell_apk.IdentityService"
76 android:exported="true"
77 tools:ignore="ExportedService">
78 <intent-filter>
79 <action android:name="org.webapk.IDENTITY_SERVICE_API" />
80 </intent-filter>
81 </service>
74 </application> 82 </application>
75 </manifest> 83 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698