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

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferencesAdvanced.java

Issue 2671743002: Separate state of basic and advanced tab in CBD dialog (Closed)
Patch Set: rebase and fix compilation Created 3 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.chrome.browser.preferences.privacy; 5 package org.chromium.chrome.browser.preferences.privacy;
6 6
7 import org.chromium.chrome.browser.browsing_data.ClearBrowsingDataTab;
8
7 /** 9 /**
8 * A more advanced version of {@link ClearBrowsingDataPreferences} with more dia log options and less 10 * A more advanced version of {@link ClearBrowsingDataPreferences} with more dia log options and less
9 * explanatory text. 11 * explanatory text.
10 */ 12 */
11 public class ClearBrowsingDataPreferencesAdvanced extends ClearBrowsingDataPrefe rencesTab { 13 public class ClearBrowsingDataPreferencesAdvanced extends ClearBrowsingDataPrefe rencesTab {
12 // TODO(dullweber): Add more options. 14 // TODO(dullweber): Add more options.
15
16 @Override
17 protected int getPreferenceType() {
18 return ClearBrowsingDataTab.ADVANCED;
19 }
13 } 20 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698