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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: content/public/browser/browsing_data_types.cc
diff --git a/content/public/browser/browsing_data_types.cc b/content/public/browser/browsing_data_types.cc
new file mode 100644
index 0000000000000000000000000000000000000000..75719822343b2bf66e529dc8907a769614be6f4b
--- /dev/null
+++ b/content/public/browser/browsing_data_types.cc
@@ -0,0 +1,39 @@
+// 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"
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
+
+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};
+
+}

Powered by Google App Engine
This is Rietveld 408576698