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 IOS_CHROME_BROWSER_DOM_DISTILLER_DISTILLER_FAVICON_H_ | |
| 6 #define IOS_CHROME_BROWSER_DOM_DISTILLER_DISTILLER_FAVICON_H_ | |
| 7 | |
| 8 #include "components/dom_distiller/ios/distiller_favicon_ios.h" | |
| 9 | |
| 10 namespace web { | |
| 11 class BrowserState; | |
| 12 } | |
| 13 | |
| 14 namespace dom_distiller { | |
| 15 | |
| 16 class DistillerFavicon : public DistillerFaviconIOS { | |
|
kkhorimoto
2016/11/28 23:48:25
Add class comments
| |
| 17 public: | |
| 18 void HandleFaviconURL(std::vector<web::FaviconURL> urls, | |
| 19 const GURL& page_url) override; | |
| 20 DistillerFavicon(web::BrowserState* browser_state); | |
| 21 ~DistillerFavicon(); | |
| 22 | |
| 23 private: | |
| 24 web::BrowserState* browser_state_; | |
| 25 }; | |
| 26 } | |
| 27 | |
| 28 #endif // IOS_CHROME_BROWSER_DOM_DISTILLER_DISTILLER_FAVICON_H_ | |
| OLD | NEW |