| Index: chrome/browser/sync/glue/data_type_change_processor.h
|
| diff --git a/chrome/browser/sync/glue/data_type_change_processor.h b/chrome/browser/sync/glue/data_type_change_processor.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6fbdf80a52b452639a3d1e54f909dadb528c9cb4
|
| --- /dev/null
|
| +++ b/chrome/browser/sync/glue/data_type_change_processor.h
|
| @@ -0,0 +1,37 @@
|
| +// 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_DATA_TYPE_CHANGE_PROCESSOR_H_
|
| +#define CHROME_BROWSER_SYNC_GLUE_DATA_TYPE_CHANGE_PROCESSOR_H_
|
| +#pragma once
|
| +
|
| +#include "base/compiler_specific.h"
|
| +#include "base/memory/ref_counted.h"
|
| +#include "chrome/browser/sync/api/sync_change_processor.h"
|
| +#include "chrome/browser/sync/glue/generic_change_processor.h"
|
| +
|
| +namespace browser_sync {
|
| +
|
| +// A SyncChangeProcessor stub for interacting with a refcounted
|
| +// GenericChangeProcessor.
|
| +class DataTypeChangeProcessor : public SyncChangeProcessor {
|
| + public:
|
| + DataTypeChangeProcessor(
|
| + browser_sync::GenericChangeProcessor* change_processor);
|
| + virtual ~DataTypeChangeProcessor();
|
| +
|
| + // SyncChangeProcessor implementation.
|
| + virtual SyncError ProcessSyncChanges(
|
| + const tracked_objects::Location& from_here,
|
| + const SyncChangeList& change_list) OVERRIDE;
|
| +
|
| + // Default copy and assign welcome (and safe due to refcounted-ness).
|
| +
|
| + private:
|
| + scoped_refptr<browser_sync::GenericChangeProcessor> change_processor_;
|
| +};
|
| +
|
| +} // namespace browser_sync
|
| +
|
| +#endif // CHROME_BROWSER_SYNC_GLUE_DATA_TYPE_CHANGE_PROCESSOR_H_
|
|
|