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

Side by Side Diff: components/browsing_data/core/pref_names.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
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #ifndef COMPONENTS_BROWSING_DATA_CORE_PREF_NAMES_H_ 5 #ifndef COMPONENTS_BROWSING_DATA_CORE_PREF_NAMES_H_
6 #define COMPONENTS_BROWSING_DATA_CORE_PREF_NAMES_H_ 6 #define COMPONENTS_BROWSING_DATA_CORE_PREF_NAMES_H_
7 7
8 namespace user_prefs { 8 namespace user_prefs {
9 class PrefRegistrySyncable; 9 class PrefRegistrySyncable;
10 } 10 }
11 11
12 namespace browsing_data { 12 namespace browsing_data {
13 13
14 namespace prefs { 14 namespace prefs {
15 15
16 extern const char kDeleteTimePeriod[]; 16 extern const char kDeleteTimePeriod[];
17 extern const char kDeleteTimePeriodBasic[];
17 18
18 extern const char kDeleteBrowsingHistory[]; 19 extern const char kDeleteBrowsingHistory[];
20 extern const char kDeleteBrowsingHistoryBasic[];
19 extern const char kDeleteDownloadHistory[]; 21 extern const char kDeleteDownloadHistory[];
20 extern const char kDeleteCache[]; 22 extern const char kDeleteCache[];
23 extern const char kDeleteCacheBasic[];
21 extern const char kDeleteCookies[]; 24 extern const char kDeleteCookies[];
25 extern const char kDeleteCookiesBasic[];
22 extern const char kDeletePasswords[]; 26 extern const char kDeletePasswords[];
23 extern const char kDeleteFormData[]; 27 extern const char kDeleteFormData[];
24 extern const char kDeleteHostedAppsData[]; 28 extern const char kDeleteHostedAppsData[];
25 extern const char kDeleteMediaLicenses[]; 29 extern const char kDeleteMediaLicenses[];
26 30
27 extern const char kLastClearBrowsingDataTime[]; 31 extern const char kLastClearBrowsingDataTime[];
28 extern const char kClearBrowsingDataHistoryNoticeShownTimes[]; 32 extern const char kClearBrowsingDataHistoryNoticeShownTimes[];
29 33
30 extern const char kLastClearBrowsingDataTab[]; 34 extern const char kLastClearBrowsingDataTab[];
35 extern const char kPreferencesMigratedToBasic[];
31 36
32 // Registers the Clear Browsing Data UI prefs. 37 // Registers the Clear Browsing Data UI prefs.
33 void RegisterBrowserUserPrefs(user_prefs::PrefRegistrySyncable* registry); 38 void RegisterBrowserUserPrefs(user_prefs::PrefRegistrySyncable* registry);
34 39
35 } // namespace prefs 40 } // namespace prefs
36 41
37 } // namespace browsing_data 42 } // namespace browsing_data
38 43
39 #endif // COMPONENTS_BROWSING_DATA_CORE_PREF_NAMES_H_ 44 #endif // COMPONENTS_BROWSING_DATA_CORE_PREF_NAMES_H_
OLDNEW
« no previous file with comments | « components/browsing_data/core/counters/history_counter.cc ('k') | components/browsing_data/core/pref_names.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698