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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/firstrun/FirstRunGlue.java

Issue 2275513003: Move usage and crash reporting to opt-out by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unittests Created 4 years, 4 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
Index: chrome/android/java/src/org/chromium/chrome/browser/firstrun/FirstRunGlue.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/firstrun/FirstRunGlue.java b/chrome/android/java/src/org/chromium/chrome/browser/firstrun/FirstRunGlue.java
index 2acac9aaa1bb627812df8e53774f6cecc6dd3d84..5732be78778a4c98c78f4a87f96331faf1159db4 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/firstrun/FirstRunGlue.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/firstrun/FirstRunGlue.java
@@ -18,17 +18,10 @@ public interface FirstRunGlue {
boolean didAcceptTermsOfService(Context appContext);
/**
- * @return Whether the "upload crash dump" setting is set to "NEVER".
- * @param appContext An application context.
- */
- boolean isNeverUploadCrashDump(Context appContext);
-
- /**
* Sets the EULA/Terms of Services state as "ACCEPTED".
- * @param appContext An application context.
* @param allowCrashUpload True if the user allows to upload crash dumps and collect stats.
*/
- void acceptTermsOfService(Context appContext, boolean allowCrashUpload);
+ void acceptTermsOfService(boolean allowCrashUpload);
/**
* @return Whether a given account name is the default (first) Android account name.
@@ -48,4 +41,4 @@ public interface FirstRunGlue {
* @param fragment A fragment that requested the service.
*/
void openAccountAdder(Fragment fragment);
-}
+}

Powered by Google App Engine
This is Rietveld 408576698