// Copyright 2018 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_IMAGE_FETCHER_CORE_CACHE_IMAGE_METADATA_STORE_H_ #define COMPONENTS_IMAGE_FETCHER_CORE_CACHE_IMAGE_METADATA_STORE_H_ #include <string> #include "base/time/time.h" #include "components/image_fetcher/core/cache/image_store_types.h" namespace image_fetcher { // Interface for an object capable of saving/loading image metadata. class ImageMetadataStore { … }; } // namespace image_fetcher #endif // COMPONENTS_IMAGE_FETCHER_CORE_CACHE_IMAGE_METADATA_STORE_H_