// 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_FAVICON_CORE_FAVICON_CLIENT_H_ #define COMPONENTS_FAVICON_CORE_FAVICON_CLIENT_H_ #include <vector> #include "base/task/cancelable_task_tracker.h" #include "components/favicon_base/favicon_callback.h" class GURL; namespace favicon { // This class abstracts operations that depend on the embedder's environment, // e.g. Chrome. class FaviconClient { … }; } // namespace favicon #endif // COMPONENTS_FAVICON_CORE_FAVICON_CLIENT_H_