// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef STORAGE_BROWSER_FILE_SYSTEM_OBFUSCATED_FILE_UTIL_DELEGATE_H_ #define STORAGE_BROWSER_FILE_SYSTEM_OBFUSCATED_FILE_UTIL_DELEGATE_H_ #include "base/component_export.h" #include "base/files/file.h" #include "base/files/file_path.h" #include "storage/browser/file_system/native_file_util.h" namespace storage { // This delegate performs all ObfuscatedFileUtil tasks that actually touch disk. class COMPONENT_EXPORT(STORAGE_BROWSER) ObfuscatedFileUtilDelegate { … }; } // namespace storage #endif // STORAGE_BROWSER_FILE_SYSTEM_OBFUSCATED_FILE_UTIL_DELEGATE_H_