| Index: chrome/browser/sync_file_system/mock_remote_file_sync_service.cc
|
| diff --git a/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc b/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc
|
| index c577d896d545d3eae39c8a5880c3087793ef1750..c82e4159cd5fe17938d67b00fb3ff2f2b55e4355 100644
|
| --- a/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc
|
| +++ b/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "chrome/browser/sync_file_system/mock_remote_file_sync_service.h"
|
|
|
| +#include <string>
|
| +
|
| #include "base/bind.h"
|
| #include "base/location.h"
|
| #include "base/message_loop_proxy.h"
|
| @@ -45,10 +47,10 @@ MockRemoteFileSyncService::MockRemoteFileSyncService() {
|
| MockRemoteFileSyncService::~MockRemoteFileSyncService() {
|
| }
|
|
|
| -void MockRemoteFileSyncService::NotifyRemoteChangeAvailable(
|
| +void MockRemoteFileSyncService::NotifyRemoteChangeQueueUpdated(
|
| int64 pending_changes) {
|
| FOR_EACH_OBSERVER(Observer, observers_,
|
| - OnRemoteChangeAvailable(pending_changes));
|
| + OnRemoteChangeQueueUpdated(pending_changes));
|
| }
|
|
|
| void MockRemoteFileSyncService::NotifyRemoteServiceStateUpdated(
|
|
|