// 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 EXTENSIONS_BROWSER_UPDATER_EXTENSION_CACHE_H_ #define EXTENSIONS_BROWSER_UPDATER_EXTENSION_CACHE_H_ #include <string> #include "base/files/file_path.h" #include "base/functional/callback_forward.h" namespace extensions { class CrxInstallError; // ExtensionCache interface that caches extensions .crx files to share them // between multiple users and profiles on the machine. class ExtensionCache { … }; } // namespace extensions #endif // EXTENSIONS_BROWSER_UPDATER_EXTENSION_CACHE_H_