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_DISTILLER_FAVICON_IOS_H_ | |
| 6 #define COMPONENTS_DOM_DISTILLER_IOS_DISTILLER_FAVICON_IOS_H_ | |
| 7 | |
| 8 #include <vector> | |
| 9 | |
| 10 namespace web { | |
| 11 struct FaviconURL; | |
| 12 } | |
| 13 | |
| 14 class GURL; | |
| 15 | |
| 16 namespace dom_distiller { | |
| 17 | |
| 18 class DistillerFaviconIOS { | |
|
kkhorimoto
2016/11/28 23:48:25
This needs class comments. Additionally, we only
| |
| 19 public: | |
| 20 // Makes sure the favicons located at |urls| are associated with |page_url|. | |
| 21 virtual void HandleFaviconURL(std::vector<web::FaviconURL> urls, | |
|
Eugene But (OOO till 7-30)
2016/11/30 18:51:30
Optional nit: Per C+++ Style Guide this should be
| |
| 22 const GURL& page_url) = 0; | |
| 23 }; | |
| 24 | |
| 25 } // namespace dom_distiller | |
| 26 | |
| 27 #endif // COMPONENTS_DOM_DISTILLER_IOS_DISTILLER_FAVICON_IOS_H_ | |
| OLD | NEW |