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

Side by Side Diff: components/browsing_data/core/clear_browsing_data_tab.h

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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_BROWSING_DATA_CORE_CLEAR_BROWSING_DATA_TAB_H_
6 #define COMPONENTS_BROWSING_DATA_CORE_CLEAR_BROWSING_DATA_TAB_H_
7
8 namespace browsing_data {
9
10 // This enum is used to differentiate CBD preferences from the basic and
11 // advanced tab and manage their state separately. It is important that all
12 // preferences and the timeperiod selection have the same type. The default
13 // value for dialogs without separate tabs is advanced.
14 //
15 // A Java counterpart will be generated for this enum.
16 // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.chrome.browser.browsing_data
17 enum class ClearBrowsingDataTab { BASIC, ADVANCED, NUM_TYPES };
18
19 } // namespace browsing_data
20
21 #endif // COMPONENTS_BROWSING_DATA_CORE_CLEAR_BROWSING_DATA_TAB_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698