| Index: chrome/browser/sync/glue/generic_change_processor_mock.h
|
| diff --git a/chrome/browser/sync/glue/generic_change_processor_mock.h b/chrome/browser/sync/glue/generic_change_processor_mock.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a8c97f18b26e4a095bef3ad58485932343ec6fd8
|
| --- /dev/null
|
| +++ b/chrome/browser/sync/glue/generic_change_processor_mock.h
|
| @@ -0,0 +1,55 @@
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CHROME_BROWSER_SYNC_GLUE_GENERIC_CHANGE_PROCESSOR_MOCK_H_
|
| +#define CHROME_BROWSER_SYNC_GLUE_GENERIC_CHANGE_PROCESSOR_MOCK_H_
|
| +#pragma once
|
| +
|
| +#include "chrome/browser/sync/api/sync_change.h"
|
| +#include "chrome/browser/sync/glue/generic_change_processor.h"
|
| +#include "chrome/browser/sync/unrecoverable_error_handler.h"
|
| +#include "testing/gmock/include/gmock/gmock.h"
|
| +
|
| +namespace browser_sync {
|
| +
|
| +class GenericChangeProcessorMock : public GenericChangeProcessor,
|
| + public UnrecoverableErrorHandler{
|
| + public:
|
| + GenericChangeProcessorMock();
|
| +
|
| + MOCK_METHOD2(Connect, void(SyncableService* local_service,
|
| + sync_api::UserShare* user_share));
|
| + MOCK_METHOD0(Disconnect, void());
|
| + MOCK_METHOD2(ApplyChangesFromSyncModel,
|
| + void(const sync_api::BaseTransaction* trans,
|
| + const sync_api::ImmutableChangeRecordList& changes));
|
| + MOCK_METHOD0(CommitChangesFromSyncModel, void());
|
| + MOCK_METHOD2(ProcessSyncChanges,
|
| + SyncError(const tracked_objects::Location& from_here,
|
| + const SyncChangeList& change_list));
|
| + MOCK_METHOD2(GetSyncDataForType,
|
| + SyncError(syncable::ModelType type,
|
| + SyncDataList* current_sync_data));
|
| + MOCK_METHOD2(SyncModelHasUserCreatedNodes,
|
| + bool(syncable::ModelType type,
|
| + bool* has_nodes));
|
| + MOCK_METHOD1(CryptoReadyIfNecessary, bool(syncable::ModelType type));
|
| +
|
| + protected:
|
| + virtual ~GenericChangeProcessorMock();
|
| + MOCK_METHOD2(OnUnrecoverableError, void(const tracked_objects::Location&,
|
| + const std::string&));
|
| +
|
| + // Deprecated methods.
|
| + MOCK_METHOD1(StartImpl, void(Profile* profile));
|
| + MOCK_METHOD0(StopImpl, void());
|
| + MOCK_METHOD0(share_handle, sync_api::UserShare*());
|
| +
|
| + private:
|
| + DISALLOW_COPY_AND_ASSIGN(GenericChangeProcessorMock);
|
| +};
|
| +
|
| +} // namespace browser_sync
|
| +
|
| +#endif // CHROME_BROWSER_SYNC_GLUE_GENERIC_CHANGE_PROCESSOR_MOCK_H_
|
|
|