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

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

Issue 1417733008: Java code for fetching variations first run seed after receiving chrome.TOS_ACKED broadcast. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed unnecessary exception throw declaration Created 5 years, 1 month 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 | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/preferences/PrefServiceBridge.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 0e29e6a5262bc31b82d8eef2de46b3c0e94a3e67..6b14a83614d3b576c43409a33a34daf317eed5e1 100644
--- a/chrome/android/java/AndroidManifest.xml
+++ b/chrome/android/java/AndroidManifest.xml
@@ -462,6 +462,16 @@ by a child template that "extends" this file.
</receiver>
{% endif %}
+ <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>
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/preferences/PrefServiceBridge.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698