Index: sync/internal_api/sync_manager_impl_unittest.cc |
diff --git a/sync/internal_api/sync_manager_impl_unittest.cc b/sync/internal_api/sync_manager_impl_unittest.cc |
index 6aee8e3d757b9073c358db54bbd9e7131251adac..d90dff7849a41740b8a33b2a7bfab6c4340ef4c7 100644 |
--- a/sync/internal_api/sync_manager_impl_unittest.cc |
+++ b/sync/internal_api/sync_manager_impl_unittest.cc |
@@ -75,6 +75,10 @@ |
#include "testing/gtest/include/gtest/gtest.h" |
#include "url/gurl.h" |
+namespace net { |
+class URLFetcher; |
+} |
+ |
using base::ExpectDictStringValue; |
using testing::_; |
using testing::DoAll; |
@@ -801,7 +805,9 @@ class TestHttpPostProviderInterface : public HttpPostProviderInterface { |
class TestHttpPostProviderFactory : public HttpPostProviderFactory { |
public: |
~TestHttpPostProviderFactory() override {} |
- void Init(const std::string& user_agent) override {} |
+ void Init(const std::string& user_agent, |
+ base::Callback<void(net::URLFetcher*)> bind_to_tracker_callback) |
+ override {} |
HttpPostProviderInterface* Create() override { |
return new TestHttpPostProviderInterface(); |
} |