| 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};
|
| +}
|
|
|