Index: chrome/browser/sync/glue/sync_backend_host_mock.cc |
diff --git a/chrome/browser/sync/glue/sync_backend_host_mock.cc b/chrome/browser/sync/glue/sync_backend_host_mock.cc |
index ff661b7273da0ffcfba28331e4a535c422509676..1e5705ac0399f173c614f88b617005cc6351da4e 100644 |
--- a/chrome/browser/sync/glue/sync_backend_host_mock.cc |
+++ b/chrome/browser/sync/glue/sync_backend_host_mock.cc |
@@ -6,14 +6,15 @@ |
namespace browser_sync { |
+using ::testing::_; |
+ |
ACTION(InvokeTask) { |
arg3.Run(true); |
} |
SyncBackendHostMock::SyncBackendHostMock() { |
// By default, invoke the ready callback. |
- ON_CALL(*this, ConfigureDataTypes(testing::_, testing::_, testing::_, |
- testing::_, testing::_)). |
+ ON_CALL(*this, ConfigureDataTypes(_, _, _, _, _)). |
WillByDefault(InvokeTask()); |
} |