| Index: sync/engine/commit.h
|
| diff --git a/sync/engine/commit.h b/sync/engine/commit.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4a353e89f4ec2221fdc4c0abbc1693f7cbe04562
|
| --- /dev/null
|
| +++ b/sync/engine/commit.h
|
| @@ -0,0 +1,21 @@
|
| +// Copyright (c) 2012 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_ENGINE_COMMIT_H_
|
| +#define SYNC_ENGINE_COMMIT_H_
|
| +#pragma once
|
| +
|
| +#include "sync/util/syncer_error.h"
|
| +
|
| +namespace sessions {
|
| +class SyncSession;
|
| +}
|
| +
|
| +namespace browser_sync {
|
| +
|
| +SyncerError BuildAndPostCommits(sessions::SyncSession* session);
|
| +
|
| +} // namespace browser_sync
|
| +
|
| +#endif // SYNC_ENGINE_COMMIT_H_
|
|
|