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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferencesBasic.java

Issue 2646313005: Implement additional parts of the new ui for CBD. (Closed)
Patch Set: Created 3 years, 11 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/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
index 550ab5192b7f688da038320f9cd8b8e4fce63bfb..3de81b6aedd53388642ca79ac94359894c96e8b8 100644
--- 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
@@ -8,12 +8,10 @@ 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 {
+public class ClearBrowsingDataPreferencesBasic extends ClearBrowsingDataPreferencesTab {
@Override
protected DialogOption[] getDialogOptions() {
- return new DialogOption[] {
- DialogOption.CLEAR_HISTORY, DialogOption.CLEAR_COOKIES_AND_SITE_DATA,
- DialogOption.CLEAR_CACHE,
- };
+ return new DialogOption[] {DialogOption.CLEAR_HISTORY,
+ DialogOption.CLEAR_COOKIES_AND_SITE_DATA, DialogOption.CLEAR_CACHE};
}
}

Powered by Google App Engine
This is Rietveld 408576698