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

Side by Side Diff: ios/chrome/browser/dom_distiller/distiller_favicon.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 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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698