// 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 CHROME_BROWSER_EXTENSIONS_EXTENSION_ASSETS_MANAGER_H_ #define CHROME_BROWSER_EXTENSIONS_EXTENSION_ASSETS_MANAGER_H_ #include <string> #include "base/files/file_path.h" #include "base/functional/callback.h" class Profile; namespace extensions { class Extension; // Assets manager for installed extensions. Some extensions can be installed in // a shared place for multiple profiles (users). This class manages install and // uninstall. At the time being shared location is used for default apps on // Chrome OS only. This class must be used only from the extension file task // runner thread. class ExtensionAssetsManager { … }; } // namespace extensions #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ASSETS_MANAGER_H_