summaryrefslogtreecommitdiffstats
path: root/sync/api/data_batch.h
diff options
context:
space:
mode:
Diffstat (limited to 'sync/api/data_batch.h')
-rw-r--r--sync/api/data_batch.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/sync/api/data_batch.h b/sync/api/data_batch.h
new file mode 100644
index 0000000..63359cf
--- /dev/null
+++ b/sync/api/data_batch.h
@@ -0,0 +1,21 @@
+// Copyright 2015 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 SYNC_API_DATA_BATCH_H_
+#define SYNC_API_DATA_BATCH_H_
+
+#include "sync/base/sync_export.h"
+
+namespace syncer_v2 {
+
+// Interface used by the processor and service to communicate about data.
+class SYNC_EXPORT DataBatch {
+ public:
+ DataBatch() {}
+ virtual ~DataBatch() {}
+};
+
+} // namespace syncer_v2
+
+#endif // SYNC_API_DATA_BATCH_H_