| Index: chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc
|
| diff --git a/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc b/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc
|
| index 217ed048bdca546c5c4ea19e1f5c0ab123e8ee0d..2d43fcab56382b897fd6c98858c4a71b97c10daf 100644
|
| --- a/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc
|
| +++ b/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc
|
| @@ -19,6 +19,7 @@
|
| #include "chrome/browser/sync/glue/sync_frontend.h"
|
| #include "chrome/browser/sync/glue/synced_device_tracker.h"
|
| #include "chrome/browser/sync/sync_prefs.h"
|
| +#include "chrome/browser/sync/test/test_http_bridge_factory.h"
|
| #include "chrome/test/base/testing_profile.h"
|
| #include "components/user_prefs/pref_registry_syncable.h"
|
| #include "content/public/browser/notification_service.h"
|
| @@ -28,6 +29,7 @@
|
| #include "net/url_request/test_url_fetcher_factory.h"
|
| #include "sync/internal_api/public/base/model_type.h"
|
| #include "sync/internal_api/public/engine/model_safe_worker.h"
|
| +#include "sync/internal_api/public/http_post_provider_factory.h"
|
| #include "sync/internal_api/public/sync_manager_factory.h"
|
| #include "sync/internal_api/public/test/fake_sync_manager.h"
|
| #include "sync/internal_api/public/util/experiments.h"
|
| @@ -193,7 +195,9 @@ class SyncBackendHostTest : public testing::Test {
|
| fake_manager_factory_.PassAs<syncer::SyncManagerFactory>(),
|
| scoped_ptr<syncer::UnrecoverableErrorHandler>(
|
| new syncer::TestUnrecoverableErrorHandler).Pass(),
|
| - NULL);
|
| + NULL,
|
| + scoped_ptr<syncer::HttpPostProviderFactory>(
|
| + new TestHttpBridgeFactory()));
|
| base::RunLoop run_loop;
|
| BrowserThread::PostDelayedTask(BrowserThread::UI, FROM_HERE,
|
| run_loop.QuitClosure(),
|
|
|