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

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: Minor fixes: changed comments and removed unused includes and usings 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
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"
newt (away) 2015/11/06 18:27:14 Could we just use the ToSAckedReceiver instead of
Alexander Agulenko 2015/11/06 19:18:36 It was our initial approach. See my general commen
+ 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>

Powered by Google App Engine
This is Rietveld 408576698