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

Side by Side Diff: android_webview/apk/java/AndroidManifest.xml

Issue 2975693002: Add AwVariationsSeedFetchService and refactory VariationsSeedFetcher (Closed)
Patch Set: Add Seed Preference to store seed independently 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 <!-- 2 <!--
3 Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this 3 Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this
4 source code is governed by a BSD-style license that can be found in the 4 source code is governed by a BSD-style license that can be found in the
5 LICENSE file. 5 LICENSE file.
6 --> 6 -->
7 7
8 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 8 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
9 xmlns:tools="http://schemas.android.com/tools" 9 xmlns:tools="http://schemas.android.com/tools"
10 package="{{package|default('com.android.webview')}}"> 10 package="{{package|default('com.android.webview')}}">
(...skipping 20 matching lines...) Expand all
31 <intent-filter> 31 <intent-filter>
32 <action android:name="android.settings.WEBVIEW_LICENSE" /> 32 <action android:name="android.settings.WEBVIEW_LICENSE" />
33 <category android:name="android.intent.category.DEFAULT" /> 33 <category android:name="android.intent.category.DEFAULT" />
34 </intent-filter> 34 </intent-filter>
35 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CO NTROLLED" 35 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CO NTROLLED"
36 android:value="true" /> 36 android:value="true" />
37 </activity> 37 </activity>
38 <provider android:name="com.android.webview.chromium.LicenseContentP rovider" 38 <provider android:name="com.android.webview.chromium.LicenseContentP rovider"
39 android:exported="true" 39 android:exported="true"
40 android:authorities="{{ manifest_package }}.LicenseContent Provider" /> 40 android:authorities="{{ manifest_package }}.LicenseContent Provider" />
41 <service android:name="org.chromium.android_webview.AwVariations SeedFetchService"
paulmiller 2017/07/10 18:23:12 unindent
paulmiller 2017/07/10 23:37:40 Never mind; per the "WebView Service design" email
yiyuny 2017/07/11 19:15:18 Acknowledged.
yiyuny 2017/07/11 19:15:18 Done.
42 android:permission="android.permission.BIND_JOB_SERVICE "
43 android:exported="true"
44 android:process=":variations_service"/>
41 {% if donor_package is not defined %} 45 {% if donor_package is not defined %}
42 <service android:name="org.chromium.android_webview.crash.CrashR eceiverService" 46 <service android:name="org.chromium.android_webview.crash.CrashR eceiverService"
43 android:exported="true" 47 android:exported="true"
44 android:process=":crash_receiver_service"/> 48 android:process=":crash_receiver_service"/>
45 <service android:name="org.chromium.android_webview.crash.AwMini dumpUploadJobService" 49 <service android:name="org.chromium.android_webview.crash.AwMini dumpUploadJobService"
46 android:permission="android.permission.BIND_JOB_SERVICE " 50 android:permission="android.permission.BIND_JOB_SERVICE "
47 android:exported="true" 51 android:exported="true"
48 android:process=":crash_receiver_service"/> 52 android:process=":crash_receiver_service"/>
49 {% endif %} 53 {% endif %}
50 {% endmacro %} 54 {% endmacro %}
(...skipping 13 matching lines...) Expand all
64 android:isolatedProcess="true" 68 android:isolatedProcess="true"
65 android:exported="true" 69 android:exported="true"
66 android:externalService="true" 70 android:externalService="true"
67 tools:ignore="ExportedService" 71 tools:ignore="ExportedService"
68 {{sandboxed_service_extra_flags|default('')}} /> 72 {{sandboxed_service_extra_flags|default('')}} />
69 {% endfor %} 73 {% endfor %}
70 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES" 74 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES"
71 android:value="0"/> 75 android:value="0"/>
72 </application> 76 </application>
73 </manifest> 77 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698