chromium/components/policy/core/common/external_data_fetcher.cc

// 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.

#include "components/policy/core/common/external_data_fetcher.h"

#include "base/functional/callback.h"
#include "components/policy/core/common/external_data_manager.h"

namespace policy {

ExternalDataFetcher::ExternalDataFetcher(
    base::WeakPtr<ExternalDataManager> manager,
    const std::string& policy)
    :{}

ExternalDataFetcher::ExternalDataFetcher(const ExternalDataFetcher& other)
    :{}

ExternalDataFetcher::~ExternalDataFetcher() {}

// static
bool ExternalDataFetcher::Equals(const ExternalDataFetcher* first,
                                 const ExternalDataFetcher* second) {}

void ExternalDataFetcher::Fetch(FetchCallback callback) const {}

void ExternalDataFetcher::Fetch(const std::string& field_name,
                                FetchCallback callback) const {}

}  // namespace policy