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

Side by Side Diff: chrome/browser/favicon/chrome_favicon_client.h

Issue 303453004: Move the FaviconClient implementation to ChromeFaviconClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed include. Created 6 years, 7 months 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 2014 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 CHROME_BROWSER_FAVICON_CHROME_FAVICON_CLIENT_H_
6 #define CHROME_BROWSER_FAVICON_CHROME_FAVICON_CLIENT_H_
7
8 #include "components/favicon/core/browser/favicon_client.h"
9
10 #include "base/macros.h"
11
12 class FaviconService;
13 class GURL;
14 class Profile;
15
16 class ChromeFaviconClient : public FaviconClient {
blundell 2014/05/26 15:53:07 Should have a class comment.
jif-google 2014/05/26 17:49:22 Done.
17 public:
18 explicit ChromeFaviconClient(Profile* profile);
19 virtual ~ChromeFaviconClient();
20
21 // FaviconClient implementation:
22 virtual FaviconService* GetFaviconService() OVERRIDE;
23 virtual bool IsBookmarked(const GURL& url) OVERRIDE;
24
25 private:
26 Profile* profile_;
27 DISALLOW_COPY_AND_ASSIGN(ChromeFaviconClient);
28 };
29
30 #endif // CHROME_BROWSER_FAVICON_CHROME_FAVICON_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/favicon/chrome_favicon_client.cc » ('j') | chrome/browser/favicon/favicon_tab_helper.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698