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

Unified Diff: components/favicon/core/large_icon_service_unittest.cc

Issue 2347173002: Extend FaviconService to support fetching favicons from a Google server (Closed)
Patch Set: Peter's comments #2 Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: components/favicon/core/large_icon_service_unittest.cc
diff --git a/components/favicon/core/large_icon_service_unittest.cc b/components/favicon/core/large_icon_service_unittest.cc
index e3bc5f9c5607166ac290dbe40bf4dcfc75f9bbcb..409b0df187627e6a48ba39d914bf2ebd37e38846 100644
--- a/components/favicon/core/large_icon_service_unittest.cc
+++ b/components/favicon/core/large_icon_service_unittest.cc
@@ -18,6 +18,7 @@
#include "components/favicon/core/favicon_service.h"
#include "components/favicon_base/fallback_icon_style.h"
#include "components/favicon_base/favicon_types.h"
+#include "components/image_fetcher/image_fetcher.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "third_party/skia/include/core/SkColor.h"
@@ -57,7 +58,7 @@ favicon_base::FaviconRawBitmapResult CreateTestBitmap(
// A mock FaviconService that emits pre-programmed response.
class MockFaviconService : public FaviconService {
public:
- MockFaviconService() : FaviconService(nullptr, nullptr) {
+ MockFaviconService() : FaviconService(nullptr, nullptr, nullptr) {
}
~MockFaviconService() override {

Powered by Google App Engine
This is Rietveld 408576698