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

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

Issue 2697123004: Convert RemoveDataMask from enum to pointers and split it between content and embedder (Closed)
Patch Set: Android compilation 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
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/public/browser/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
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{"service workers", true};
20
21 const BrowsingDataType kBrowsingDataTypeCacheStorage{"cache storage", true};
22
23 const BrowsingDataType kBrowsingDataTypeStorage{"storage", true};
24
25 const BrowsingDataType kBrowsingDataTypeCookies{"cookies", true};
26
27 const BrowsingDataType kBrowsingDataTypeChannelIDs{"channel IDs", true};
28
29 const BrowsingDataType kBrowsingDataTypeCache{"cache", true};
30
31 const BrowsingDataType kBrowsingDataTypeDownloads{"downloads", true};
32
33 const BrowsingDataType kBrowsingDataTypeMediaLicenses{"media licenses", true};
34
35 const BrowsingDataType kBrowsingDataTypeNoChecks{"no checks", true};
36 }
OLDNEW
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/public/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698