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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/public/browser/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/browsing_data/browsing_data_types.cc
diff --git a/content/browser/browsing_data/browsing_data_types.cc b/content/browser/browsing_data/browsing_data_types.cc
new file mode 100644
index 0000000000000000000000000000000000000000..917333b7677990b8229e612c3e7631b730628756
--- /dev/null
+++ b/content/browser/browsing_data/browsing_data_types.cc
@@ -0,0 +1,36 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/public/browser/browsing_data_types.h"
+
+namespace content {
+
+const BrowsingDataType kBrowsingDataTypeAppCache{"appcache", true};
+
+const BrowsingDataType kBrowsingDataTypeFileSystems{"file systems", true};
+
+const BrowsingDataType kBrowsingDataTypeIndexedDB{"indexed db", true};
+
+const BrowsingDataType kBrowsingDataTypeLocalStorage{"local storage", true};
+
+const BrowsingDataType kBrowsingDataTypeWebSQL{"web sql", true};
+
+const BrowsingDataType kBrowsingDataTypeServiceWorkers{"service workers", true};
+
+const BrowsingDataType kBrowsingDataTypeCacheStorage{"cache storage", true};
+
+const BrowsingDataType kBrowsingDataTypeStorage{"storage", true};
+
+const BrowsingDataType kBrowsingDataTypeCookies{"cookies", true};
+
+const BrowsingDataType kBrowsingDataTypeChannelIDs{"channel IDs", true};
+
+const BrowsingDataType kBrowsingDataTypeCache{"cache", true};
+
+const BrowsingDataType kBrowsingDataTypeDownloads{"downloads", true};
+
+const BrowsingDataType kBrowsingDataTypeMediaLicenses{"media licenses", true};
+
+const BrowsingDataType kBrowsingDataTypeNoChecks{"no checks", true};
+}
« 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