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

Unified Diff: chrome/android/java/AndroidManifest.xml

Issue 2648383002: Revert of Fetch Finch seed during restore (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « chrome/android/BUILD.gn ('k') | chrome/android/java/src/org/chromium/chrome/browser/ChromeBackupAgent.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/AndroidManifest.xml
diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml
index b555f6a7eee6164c2172b625eaefa896e2897977..2b0d2c5c1fcb25ced9bb178b2ad00483fca1b088 100644
--- a/chrome/android/java/AndroidManifest.xml
+++ b/chrome/android/java/AndroidManifest.xml
@@ -696,6 +696,23 @@
android:exported="false">
</service>
+ <service android:name="org.chromium.components.variations.firstrun.VariationsSeedService"
+ android:exported="false" />
+
+ <receiver android:name="org.chromium.components.variations.firstrun.VariationsSeedServiceLauncher"
+ android:permission="{{ manifest_package }}.TOS_ACKED">
+ <intent-filter>
+ <action android:name="{{ manifest_package }}.TOS_ACKED" />
+ </intent-filter>
+ </receiver>
+
+ <receiver android:name="org.chromium.chrome.browser.firstrun.ToSAckedReceiver"
+ android:permission="{{ manifest_package }}.TOS_ACKED">
+ <intent-filter>
+ <action android:name="{{ manifest_package }}.TOS_ACKED" />
+ </intent-filter>
+ </receiver>
+
<!-- Bookmarks widget -->
<receiver android:name="com.google.android.apps.chrome.appwidget.bookmarks.BookmarkThumbnailWidgetProvider"
android:label="@string/bookmark_widget_title">
« no previous file with comments | « chrome/android/BUILD.gn ('k') | chrome/android/java/src/org/chromium/chrome/browser/ChromeBackupAgent.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698