Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(413)

Side by Side Diff: components/dom_distiller/ios/distiller_favicon_ios.h

Issue 2529283002: Save favicon during reading list distillation (Closed)
Patch Set: Add a comment Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698