// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_POLICY_CORE_COMMON_EXTERNAL_DATA_FETCHER_H_ #define COMPONENTS_POLICY_CORE_COMMON_EXTERNAL_DATA_FETCHER_H_ #include <memory> #include <string> #include "base/files/file_path.h" #include "base/functional/callback_forward.h" #include "base/memory/weak_ptr.h" #include "components/policy/policy_export.h" namespace policy { class ExternalDataManager; // A helper that encapsulates the parameters required to retrieve the external // data for a policy. class POLICY_EXPORT ExternalDataFetcher { … }; } // namespace policy #endif // COMPONENTS_POLICY_CORE_COMMON_EXTERNAL_DATA_FETCHER_H_