// 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_DRIVER_H_ #define COMPONENTS_FAVICON_CORE_FAVICON_DRIVER_H_ #include "base/observer_list.h" #include "components/favicon/core/favicon_driver_observer.h" class GURL; namespace gfx { class Image; } namespace favicon { // Interface that allows favicon core code to obtain information about the // current page. This is partially implemented by FaviconDriverImpl, and // concrete implementation should be based on that class instead of directly // subclassing FaviconDriver. class FaviconDriver { … }; } // namespace favicon #endif // COMPONENTS_FAVICON_CORE_FAVICON_DRIVER_H_