Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef COMPONENTS_DOM_DISTILLER_IOS_FAVICON_OBSERVER_FACTORY_H_ | |
| 6 #define COMPONENTS_DOM_DISTILLER_IOS_FAVICON_OBSERVER_FACTORY_H_ | |
| 7 | |
| 8 namespace web { | |
| 9 class BrowserState; | |
| 10 class WebState; | |
| 11 } | |
| 12 | |
| 13 namespace dom_distiller { | |
| 14 | |
| 15 // Factory to add a favicon observer to a web state. | |
| 16 class FaviconObserverFactory { | |
| 17 public: | |
| 18 virtual void AddFaviconObserver(web::WebState* web_state, | |
|
Eugene But (OOO till 7-30)
2016/12/08 15:34:53
Please add comments
| |
| 19 web::BrowserState* browser_state) = 0; | |
| 20 }; | |
| 21 | |
| 22 } // namespace dom_distiller | |
| 23 | |
| 24 #endif // COMPONENTS_DOM_DISTILLER_IOS_FAVICON_OBSERVER_FACTORY_H_ | |
| OLD | NEW |