// 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_H_ #define COMPONENTS_VALUE_STORE_VALUE_STORE_H_ #include <stddef.h> #include <memory> #include <string> #include <utility> #include <vector> #include "base/values.h" #include "components/value_store/value_store_change.h" namespace value_store { // Interface for a storage area for Value objects. class ValueStore { … }; } // namespace value_store #endif // COMPONENTS_VALUE_STORE_VALUE_STORE_H_