| Index: chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferencesBasic.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferencesBasic.java b/chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferencesBasic.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..550ab5192b7f688da038320f9cd8b8e4fce63bfb
|
| --- /dev/null
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferencesBasic.java
|
| @@ -0,0 +1,19 @@
|
| +// Copyright 2017 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +package org.chromium.chrome.browser.preferences.privacy;
|
| +
|
| +/**
|
| + * A simpler version of {@link ClearBrowsingDataPreferences} with fewer dialog options and more
|
| + * explanatory text.
|
| + */
|
| +public class ClearBrowsingDataPreferencesBasic extends ClearBrowsingDataPreferences {
|
| + @Override
|
| + protected DialogOption[] getDialogOptions() {
|
| + return new DialogOption[] {
|
| + DialogOption.CLEAR_HISTORY, DialogOption.CLEAR_COOKIES_AND_SITE_DATA,
|
| + DialogOption.CLEAR_CACHE,
|
| + };
|
| + }
|
| +}
|
|
|