// 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_MANAGER_H_ #define COMPONENTS_POLICY_CORE_COMMON_EXTERNAL_DATA_MANAGER_H_ #include <string> #include "components/policy/core/common/external_data_fetcher.h" #include "components/policy/policy_export.h" namespace policy { // Downloads, verifies, caches and retrieves external data referenced by // policies. // An implementation of this abstract interface should be provided for each // policy source (cloud policy, platform policy) that supports external data // references. class POLICY_EXPORT ExternalDataManager { … }; } // namespace policy #endif // COMPONENTS_POLICY_CORE_COMMON_EXTERNAL_DATA_MANAGER_H_