Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 #include "components/browsing_data/pref_names.h" | 5 #include "components/browsing_data/pref_names.h" |
| 6 | 6 |
| 7 namespace browsing_data { | 7 namespace browsing_data { |
| 8 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| 11 // Clear browsing data delete time period | 11 // Clear browsing data delete time period |
|
msramek
2016/07/12 13:27:48
nit: deletion
nit: period after "period" :)
ioanap
2016/07/12 14:19:20
Done.
| |
| 12 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; | 12 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; |
| 13 | 13 |
| 14 // Clear Browsing Data dialog preferences. | |
|
msramek
2016/07/12 13:27:48
The preference above is also a CBD dialog preferen
ioanap
2016/07/12 14:19:20
Done.
| |
| 15 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history"; | |
| 16 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; | |
| 17 const char kDeleteCache[] = "browser.clear_data.cache"; | |
| 18 const char kDeleteCookies[] = "browser.clear_data.cookies"; | |
| 19 const char kDeletePasswords[] = "browser.clear_data.passwords"; | |
| 20 const char kDeleteFormData[] = "browser.clear_data.form_data"; | |
| 21 const char kDeleteHostedAppsData[] = "browser.clear_data.hosted_apps_data"; | |
| 22 const char kDeleteMediaLicenses[] = "browser.clear_data.media_licenses"; | |
| 23 | |
| 14 } // namespace prefs | 24 } // namespace prefs |
| 15 | 25 |
| 16 } // namespace browsing_data | 26 } // namespace browsing_data |
| OLD | NEW |