| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_FAVICON_CHROME_FAVICON_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_FAVICON_CHROME_FAVICON_CLIENT_H_ |
| 6 #define CHROME_BROWSER_FAVICON_CHROME_FAVICON_CLIENT_H_ | 6 #define CHROME_BROWSER_FAVICON_CHROME_FAVICON_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "components/favicon/core/browser/favicon_client.h" | 9 #include "components/favicon/core/favicon_client.h" |
| 10 | 10 |
| 11 class GURL; | 11 class GURL; |
| 12 class Profile; | 12 class Profile; |
| 13 | 13 |
| 14 namespace bookmarks { | 14 namespace bookmarks { |
| 15 class BookmarkModel; | 15 class BookmarkModel; |
| 16 } | 16 } |
| 17 | 17 |
| 18 // ChromeFaviconClient implements the the FaviconClient interface. | 18 // ChromeFaviconClient implements the the FaviconClient interface. |
| 19 class ChromeFaviconClient : public FaviconClient { | 19 class ChromeFaviconClient : public FaviconClient { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 32 const favicon_base::FaviconResultsCallback& callback, | 32 const favicon_base::FaviconResultsCallback& callback, |
| 33 base::CancelableTaskTracker* tracker) override; | 33 base::CancelableTaskTracker* tracker) override; |
| 34 | 34 |
| 35 Profile* profile_; | 35 Profile* profile_; |
| 36 bookmarks::BookmarkModel* bookmark_model_; | 36 bookmarks::BookmarkModel* bookmark_model_; |
| 37 | 37 |
| 38 DISALLOW_COPY_AND_ASSIGN(ChromeFaviconClient); | 38 DISALLOW_COPY_AND_ASSIGN(ChromeFaviconClient); |
| 39 }; | 39 }; |
| 40 | 40 |
| 41 #endif // CHROME_BROWSER_FAVICON_CHROME_FAVICON_CLIENT_H_ | 41 #endif // CHROME_BROWSER_FAVICON_CHROME_FAVICON_CLIENT_H_ |
| OLD | NEW |