| 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);
|
| -}
|
| +}
|
|
|