chromium/components/sync/test/mock_invalidation.h

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_SYNC_TEST_MOCK_INVALIDATION_H_
#define COMPONENTS_SYNC_TEST_MOCK_INVALIDATION_H_

#include <stdint.h>

#include <memory>
#include <string>

#include "components/sync/base/sync_invalidation.h"

namespace syncer {

// A SyncInvalidation used by sync for testing.
// It does not support any form of acknowledgements.
class MockInvalidation : public SyncInvalidation {};

}  // namespace syncer

#endif  // COMPONENTS_SYNC_TEST_MOCK_INVALIDATION_H_