// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_BROWSER_API_FILE_SYSTEM_SAVED_FILES_SERVICE_INTERFACE_H_ #define EXTENSIONS_BROWSER_API_FILE_SYSTEM_SAVED_FILES_SERVICE_INTERFACE_H_ #include <string> #include "base/files/file_path.h" #include "extensions/common/extension_id.h" namespace extensions { struct SavedFileEntry; // Provides an LRU of saved file entries that persist across app reloads. class SavedFilesServiceInterface { … }; } // namespace extensions #endif // EXTENSIONS_BROWSER_API_FILE_SYSTEM_SAVED_FILES_SERVICE_INTERFACE_H_