// 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_FILE_ENTRY_H_ #define EXTENSIONS_BROWSER_API_FILE_SYSTEM_SAVED_FILE_ENTRY_H_ #include <string> #include "base/files/file_path.h" namespace extensions { // Represents a file entry that a user has given an app permission to // access. Must be serializable for persisting to disk. struct SavedFileEntry { … }; } // namespace extensions #endif // EXTENSIONS_BROWSER_API_FILE_SYSTEM_SAVED_FILE_ENTRY_H_