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

Side by Side Diff: web_apks/minting_example/AndroidManifest.xml

Issue 1888773004: 🙅 Bind a WebAPK to its "host" browser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 package="{{ manifest_package }}" 7 package="{{ manifest_package }}"
8 android:versionCode="1" 8 android:versionCode="1"
9 android:versionName="1.0" > 9 android:versionName="1.0" >
10 10
(...skipping 16 matching lines...) Expand all
27 <action android:name="android.intent.action.MAIN" /> 27 <action android:name="android.intent.action.MAIN" />
28 <category android:name="android.intent.category.LAUNCHER" /> 28 <category android:name="android.intent.category.LAUNCHER" />
29 </intent-filter> 29 </intent-filter>
30 <intent-filter> 30 <intent-filter>
31 <action android:name="android.intent.action.VIEW"></action> 31 <action android:name="android.intent.action.VIEW"></action>
32 <category android:name="android.intent.category.DEFAULT"></categ ory> 32 <category android:name="android.intent.category.DEFAULT"></categ ory>
33 <category android:name="android.intent.category.BROWSABLE"></cat egory> 33 <category android:name="android.intent.category.BROWSABLE"></cat egory>
34 <data android:scheme="https" android:host="{{ scope_url_host }}" android:pathPrefix=""></data> 34 <data android:scheme="https" android:host="{{ scope_url_host }}" android:pathPrefix=""></data>
35 </intent-filter> 35 </intent-filter>
36 </activity> 36 </activity>
37 <meta-data android:name="runtimeHost" android:value="{{ runtime_host }}" />
37 <meta-data android:name="hostUrl" android:value="{{ host_url }}" /> 38 <meta-data android:name="hostUrl" android:value="{{ host_url }}" />
38 <meta-data android:name="mac" android:value="{{ mac }}" /> 39 <meta-data android:name="mac" android:value="{{ mac }}" />
39 <meta-data android:name="scope" android:value="{{ scope }}" /> 40 <meta-data android:name="scope" android:value="{{ scope }}" />
40 <service 41 <service
41 android:name="org.chromium.minting.MintingServiceFactory" 42 android:name="org.chromium.minting.MintingServiceFactory"
42 android:exported="true"> 43 android:exported="true">
43 <intent-filter> 44 <intent-filter>
44 <action android:name="android.intent.action.MAIN" /> 45 <action android:name="android.intent.action.MAIN" />
45 <category android:name="android.intent.category.MINTED_API" /> 46 <category android:name="android.intent.category.MINTED_API" />
46 </intent-filter> 47 </intent-filter>
(...skipping 20 matching lines...) Expand all
67 android:exported="true"/> 68 android:exported="true"/>
68 <service android:name="org.chromium.content.app.PrivilegedProcessService 1" 69 <service android:name="org.chromium.content.app.PrivilegedProcessService 1"
69 android:process=":privileged_process1" 70 android:process=":privileged_process1"
70 android:exported="true"/> 71 android:exported="true"/>
71 <service android:name="org.chromium.content.app.PrivilegedProcessService 2" 72 <service android:name="org.chromium.content.app.PrivilegedProcessService 2"
72 android:process=":privileged_process2" 73 android:process=":privileged_process2"
73 android:exported="true"/> 74 android:exported="true"/>
74 </application> 75 </application>
75 76
76 </manifest> 77 </manifest>
OLDNEW
« no previous file with comments | « content/shell/android/shell_apk/AndroidManifest.xml.jinja2 ('k') | web_apks/minting_example/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698