diff options
Diffstat (limited to 'chrome/browser/sync/glue/sync_backend_host_mock.cc')
-rw-r--r-- | chrome/browser/sync/glue/sync_backend_host_mock.cc | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/chrome/browser/sync/glue/sync_backend_host_mock.cc b/chrome/browser/sync/glue/sync_backend_host_mock.cc index 2d618f7..8e16905 100644 --- a/chrome/browser/sync/glue/sync_backend_host_mock.cc +++ b/chrome/browser/sync/glue/sync_backend_host_mock.cc @@ -12,15 +12,6 @@ ACTION(InvokeTask) { } SyncBackendHostMock::SyncBackendHostMock() { - // By default, the RequestPause and RequestResume methods will - // send the confirmation notification and return true. - ON_CALL(*this, RequestPause()). - WillByDefault(testing::DoAll(Notify(NotificationType::SYNC_PAUSED), - testing::Return(true))); - ON_CALL(*this, RequestResume()). - WillByDefault(testing::DoAll(Notify(NotificationType::SYNC_RESUMED), - testing::Return(true))); - // By default, invoke the ready callback. ON_CALL(*this, ConfigureDataTypes(testing::_, testing::_, testing::_)). WillByDefault(InvokeTask()); |