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

Side by Side Diff: content/public/browser/browsing_data_types.cc

Issue 2697123004: Convert RemoveDataMask from enum to pointers and split it between content and embedder (Closed)
Patch Set: More compilation error fixes. Created 3 years, 10 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 #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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698