Commit 230b08fa authored by Boris Sazonov's avatar Boris Sazonov Committed by Commit Bot

[Android] Remove ChromeBrowserSyncAdapterService from manifest

This is a follow-up to https://crrev.com/c/1821784 that removes
ChromeBrowserSyncAdapterService from AndroidManifest.

Please note that chrome/android/java/res_template/xml/syncadapter.xml
is kept in the repo for the time being, as it is being used downstream.
This file will be removed in subsequent CLs.

Bug: 1002894, 1008314
Change-Id: I7aa5fd7e2b5c982192aa07970d7400945f95116f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1827413Reviewed-by: default avatarMohamed Amir Yosef <mamir@chromium.org>
Reviewed-by: default avatarMarc Treib <treib@chromium.org>
Auto-Submit: Boris Sazonov <bsazonov@chromium.org>
Commit-Queue: Marc Treib <treib@chromium.org>
Commit-Queue: Boris Sazonov <bsazonov@chromium.org>
Cr-Commit-Position: refs/heads/master@{#700703}
parent 482293e3
...@@ -1159,7 +1159,6 @@ jinja_template_resources("chrome_public_apk_template_resources") { ...@@ -1159,7 +1159,6 @@ jinja_template_resources("chrome_public_apk_template_resources") {
"java/res_template/xml/file_paths.xml", "java/res_template/xml/file_paths.xml",
"java/res_template/xml/launchershortcuts.xml", "java/res_template/xml/launchershortcuts.xml",
"java/res_template/xml/searchable.xml", "java/res_template/xml/searchable.xml",
"java/res_template/xml/syncadapter.xml",
] ]
res_dir = "java/res_template" res_dir = "java/res_template"
variables = [ "manifest_package=$chrome_public_manifest_package" ] variables = [ "manifest_package=$chrome_public_manifest_package" ]
...@@ -1170,7 +1169,6 @@ jinja_template_resources("chrome_test_apk_template_resources") { ...@@ -1170,7 +1169,6 @@ jinja_template_resources("chrome_test_apk_template_resources") {
"java/res_template/xml/file_paths.xml", "java/res_template/xml/file_paths.xml",
"java/res_template/xml/launchershortcuts.xml", "java/res_template/xml/launchershortcuts.xml",
"java/res_template/xml/searchable.xml", "java/res_template/xml/searchable.xml",
"java/res_template/xml/syncadapter.xml",
] ]
res_dir = "java/res_template" res_dir = "java/res_template"
......
...@@ -951,16 +951,6 @@ by a child template that "extends" this file. ...@@ -951,16 +951,6 @@ by a child template that "extends" this file.
android:resource="@xml/file_paths" /> android:resource="@xml/file_paths" />
</provider> </provider>
<!-- Sync adapter for browser invalidation. -->
<service android:name="org.chromium.chrome.browser.invalidation.ChromeBrowserSyncAdapterService"
android:exported="false">
<intent-filter>
<action android:name="android.content.SyncAdapter" />
</intent-filter>
<meta-data android:name="android.content.SyncAdapter"
android:resource="@xml/syncadapter" />
</service>
<!-- Broadcast receiver that will be notified of account changes --> <!-- Broadcast receiver that will be notified of account changes -->
<receiver android:name="org.chromium.chrome.browser.services.AccountsChangedReceiver"> <receiver android:name="org.chromium.chrome.browser.services.AccountsChangedReceiver">
<intent-filter> <intent-filter>
......
...@@ -1520,14 +1520,6 @@ ...@@ -1520,14 +1520,6 @@
<service <service
android:exported="false" android:exported="false"
android:name="org.chromium.chrome.browser.incognito.IncognitoNotificationService"/> android:name="org.chromium.chrome.browser.incognito.IncognitoNotificationService"/>
<service
android:exported="false"
android:name="org.chromium.chrome.browser.invalidation.ChromeBrowserSyncAdapterService">
<intent-filter>
<action android:name="android.content.SyncAdapter"/>
</intent-filter>
<meta-data android:name="android.content.SyncAdapter" android:resource="@xml/syncadapter"/>
</service>
<service <service
android:exported="false" android:exported="false"
android:name="org.chromium.chrome.browser.media.MediaCaptureNotificationService"/> android:name="org.chromium.chrome.browser.media.MediaCaptureNotificationService"/>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment