Chromium Code Reviews| Index: sync/engine/commit.h |
| diff --git a/sync/engine/commit.h b/sync/engine/commit.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..339c16cc2581b5b51121ab1c3b94ae399bb6c210 |
| --- /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 browser_sync { |
| + |
| +namespace sessions { |
| +class SyncSession; |
| +} |
| + |
| +SyncerError BuildAndPostCommits(sessions::SyncSession* session); |
|
tim (not reviewing)
2012/05/11 18:42:16
Comment this function.
rlarocque
2012/05/14 23:10:43
Done.
|
| + |
| +} // namespace browser_sync |
| + |
| +#endif // SYNC_ENGINE_COMMIT_H_ |