Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 #include "content/public/browser/browsing_data_types.h" | |
|
Bernhard Bauer
2017/02/17 11:10:44
Hm... would it work to have the definition of thes
msramek
2017/02/17 18:00:20
Yes, I think you're right.
The problem with conte
| |
| 6 | |
| 7 namespace content { | |
| 8 | |
| 9 const BrowsingDataType kBrowsingDataTypeAppCache { "appcache", true }; | |
| 10 | |
| 11 const BrowsingDataType kBrowsingDataTypeFileSystems {"file systems", true}; | |
| 12 | |
| 13 const BrowsingDataType kBrowsingDataTypeIndexedDB {"indexed db", true}; | |
| 14 | |
| 15 const BrowsingDataType kBrowsingDataTypeLocalStorage {"local storage", true}; | |
| 16 | |
| 17 const BrowsingDataType kBrowsingDataTypeWebSQL {"web sql", true}; | |
| 18 | |
| 19 const BrowsingDataType kBrowsingDataTypeServiceWorkers { | |
| 20 "service workers", true | |
| 21 }; | |
| 22 | |
| 23 const BrowsingDataType kBrowsingDataTypeCacheStorage {"cache storage", true}; | |
| 24 | |
| 25 const BrowsingDataType kBrowsingDataTypeStorage {"storage", true}; | |
| 26 | |
| 27 const BrowsingDataType kBrowsingDataTypeCookies {"cookies", true}; | |
| 28 | |
| 29 const BrowsingDataType kBrowsingDataTypeChannelIDs {"channel IDs", true}; | |
| 30 | |
| 31 const BrowsingDataType kBrowsingDataTypeCache {"cache", true}; | |
| 32 | |
| 33 const BrowsingDataType kBrowsingDataTypeDownloads {"downloads", true}; | |
| 34 | |
| 35 const BrowsingDataType kBrowsingDataTypeMediaLicenses {"media licenses", true}; | |
| 36 | |
| 37 const BrowsingDataType kBrowsingDataTypeNoChecks {"no checks", true}; | |
| 38 | |
| 39 } | |
| OLD | NEW |