blob: 4646cb01e15bad24d3e556ef6fc3ed393037ec4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// Copyright 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_CONTROL_DATA_UPDATES_H_
#define SYNC_ENGINE_APPLY_CONTROL_DATA_UPDATES_H_
#include "sync/base/sync_export.h"
namespace syncer {
class Cryptographer;
namespace sessions {
class SyncSession;
}
namespace syncable {
class Directory;
class MutableEntry;
class WriteTransaction;
}
SYNC_EXPORT_PRIVATE void ApplyControlDataUpdates(
sessions::SyncSession* session);
void ApplyNigoriUpdate(syncable::WriteTransaction* trans,
syncable::MutableEntry* const entry,
Cryptographer* cryptographer);
void ApplyControlUpdate(syncable::WriteTransaction* const trans,
syncable::MutableEntry* const entry,
Cryptographer* cryptographer);
} // namespace syncer
#endif // SYNC_ENGINE_APPLY_CONTROL_DATA_UPDATES_H_
|