// 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 COMPONENTS_AFFILIATIONS_CORE_BROWSER_AFFILIATION_FETCHER_DELEGATE_H_ #define COMPONENTS_AFFILIATIONS_CORE_BROWSER_AFFILIATION_FETCHER_DELEGATE_H_ #include <memory> #include <vector> #include "components/affiliations/core/browser/affiliation_utils.h" namespace affiliations { class AffiliationFetcherInterface; // Interface that users of AffiliationFetcher should implement to get results of // the fetch. It is safe to destroy the fetcher in any of the event handlers. class AffiliationFetcherDelegate { … }; } // namespace affiliations #endif // COMPONENTS_AFFILIATIONS_CORE_BROWSER_AFFILIATION_FETCHER_DELEGATE_H_