| Index: sync/internal_api/public/sync_manager.h
|
| diff --git a/sync/internal_api/public/sync_manager.h b/sync/internal_api/public/sync_manager.h
|
| index 6f6d9fc0a1b517deef3fdb9ffd837f94df2a0ce8..6235da176b2d5c5a3c993132cc8cb8e84d39bec4 100644
|
| --- a/sync/internal_api/public/sync_manager.h
|
| +++ b/sync/internal_api/public/sync_manager.h
|
| @@ -12,6 +12,7 @@
|
| #include "base/callback_forward.h"
|
| #include "base/files/file_path.h"
|
| #include "base/memory/ref_counted.h"
|
| +#include "base/memory/scoped_vector.h"
|
| #include "base/task_runner.h"
|
| #include "base/threading/thread_checker.h"
|
| #include "sync/base/sync_export.h"
|
| @@ -349,6 +350,9 @@ class SYNC_EXPORT SyncManager : public syncer::InvalidationHandler {
|
|
|
| // Ask the SyncManager to fetch updates for the given types.
|
| virtual void RefreshTypes(ModelTypeSet types) = 0;
|
| +
|
| + // Returns any buffered protocol events. Does not clear the buffer.
|
| + virtual ScopedVector<syncer::ProtocolEvent> GetBufferedProtocolEvents() = 0;
|
| };
|
|
|
| } // namespace syncer
|
|
|