// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/services/storage/public/cpp/constants.h" namespace storage { // The base path where StorageBuckets data is persisted on disk, relative to a // storage partition's root directory. const base::FilePath::CharType kWebStorageDirectory[] = …); // The path where Local Storage data is persisted on disk, relative to a storage // partition's root directory. const base::FilePath::CharType kLocalStoragePath[] = …); // The name of the Leveldb database to use for databases persisted on disk. const char kLocalStorageLeveldbName[] = …; // The path where service worker and cache storage data are persisted on disk, // relative to a storage partition's root directory. const base::FilePath::CharType kServiceWorkerDirectory[] = …); // The path where media license data is persisted on disk, relative to the path // for the respective storage bucket. const base::FilePath::CharType kMediaLicenseDirectory[] = …); // The file name of the database storing media license data. const base::FilePath::CharType kMediaLicenseDatabaseFileName[] = …); // The path where File System data is persisted on disk for partitioned storage. const base::FilePath::CharType kFileSystemDirectory[] = …); // The path where IndexedDB data is persisted on disk for partitioned storage. const base::FilePath::CharType kIndexedDbDirectory[] = …); // The path where BackgroundFetch data is persisted on disk for partitioned // storage. const base::FilePath::CharType kBackgroundFetchDirectory[] = …); // The path where CacheStorage data is persisted on disk for partitioned // storage. const base::FilePath::CharType kCacheStorageDirectory[] = …); // The path where ServiceWorker script data is persisted on disk for partitioned // storage. const base::FilePath::CharType kScriptCacheDirectory[] = …); // The path where Shared Storage data is persisted on disk, relative to a // storage partition's root directory. const base::FilePath::CharType kSharedStoragePath[] = …); } // namespace storage