Home
last modified time | relevance | path

Searched refs:CefValueStoreFactory (Results 1 – 3 of 3) sorted by relevance

/third_party/cef/libcef/browser/extensions/value_store/
Dcef_value_store_factory.cc22 CefValueStoreFactory::CefValueStoreFactory() = default;
24 CefValueStoreFactory::CefValueStoreFactory(const base::FilePath& db_path) in CefValueStoreFactory() function in value_store::CefValueStoreFactory
27 CefValueStoreFactory::~CefValueStoreFactory() = default;
29 std::unique_ptr<ValueStore> CefValueStoreFactory::CreateValueStore( in CreateValueStore()
40 ValueStore* CefValueStoreFactory::LastCreatedStore() const { in LastCreatedStore()
44 void CefValueStoreFactory::DeleteValueStore(const base::FilePath& directory) { in DeleteValueStore()
48 bool CefValueStoreFactory::HasValueStore(const base::FilePath& directory) { in HasValueStore()
52 ValueStore* CefValueStoreFactory::GetExisting( in GetExisting()
59 void CefValueStoreFactory::Reset() { in Reset()
64 std::unique_ptr<ValueStore> CefValueStoreFactory::CreateStore() { in CreateStore()
Dcef_value_store_factory.h22 class CefValueStoreFactory : public ValueStoreFactory {
24 CefValueStoreFactory();
25 explicit CefValueStoreFactory(const base::FilePath& db_path);
26 CefValueStoreFactory(const CefValueStoreFactory&) = delete;
27 CefValueStoreFactory& operator=(const CefValueStoreFactory&) = delete;
46 ~CefValueStoreFactory() override;
/third_party/cef/libcef/browser/extensions/
Dextension_system.cc531 new value_store::CefValueStoreFactory(browser_context_->GetPath()); in InitPrefs()