// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_VALUE_STORE_VALUE_STORE_FRONTEND_H_ #define COMPONENTS_VALUE_STORE_VALUE_STORE_FRONTEND_H_ #include <optional> #include <string> #include "base/functional/callback.h" #include "base/memory/ref_counted.h" #include "base/values.h" namespace base { class FilePath; class SequencedTaskRunner; } // namespace base namespace value_store { class ValueStoreFactory; // A frontend for a LeveldbValueStore, for use on the UI thread. class ValueStoreFrontend { … }; } // namespace value_store #endif // COMPONENTS_VALUE_STORE_VALUE_STORE_FRONTEND_H_