| Index: sync/engine/apply_metadata_updates.h
|
| diff --git a/sync/engine/apply_metadata_updates.h b/sync/engine/apply_metadata_updates.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..783c81d6f7903dc79472e2c3924ba3b515db8e05
|
| --- /dev/null
|
| +++ b/sync/engine/apply_metadata_updates.h
|
| @@ -0,0 +1,24 @@
|
| +// 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_APPLY_METADATA_UPDATES_H_
|
| +#define SYNC_ENGINE_APPLY_METADATA_UPDATES_H_
|
| +#pragma once
|
| +
|
| +namespace syncable {
|
| +class Directory;
|
| +class WriteTransaction;
|
| +}
|
| +
|
| +namespace browser_sync {
|
| +
|
| +class Cryptographer;
|
| +
|
| +void ApplyMetadataUpdates(syncable::Directory* dir);
|
| +void ApplyNigoriUpdates(syncable::WriteTransaction* trans,
|
| + Cryptographer* cryptographer);
|
| +
|
| +}
|
| +
|
| +#endif // SYNC_ENGINE_APPLY_METADATA_UPDATES_H_
|
|
|