// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/services/storage/filesystem_proxy_factory.h" #include <utility> #include "base/functional/bind.h" #include "base/no_destructor.h" namespace storage { namespace { std::unique_ptr<FilesystemProxy> CreateUnrestrictedFilesystemProxy() { … } FilesystemProxyFactory& GetFactory() { … } } // namespace void SetFilesystemProxyFactory(FilesystemProxyFactory factory) { … } std::unique_ptr<FilesystemProxy> CreateFilesystemProxy() { … } } // namespace storage