| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef SYNC_ENGINE_APPLY_METADATA_UPDATES_H_ |
| 6 #define SYNC_ENGINE_APPLY_METADATA_UPDATES_H_ |
| 7 #pragma once |
| 8 |
| 9 namespace syncable { |
| 10 class Directory; |
| 11 class WriteTransaction; |
| 12 } |
| 13 |
| 14 namespace browser_sync { |
| 15 |
| 16 class Cryptographer; |
| 17 |
| 18 void ApplyMetadataUpdates(syncable::Directory* dir); |
| 19 void ApplyNigoriUpdates(syncable::WriteTransaction* trans, |
| 20 Cryptographer* cryptographer); |
| 21 |
| 22 } |
| 23 |
| 24 #endif // SYNC_ENGINE_APPLY_METADATA_UPDATES_H_ |
| OLD | NEW |