summaryrefslogtreecommitdiffstats
path: root/sync/engine/directory_cryptographer_provider.cc
blob: a9cd2a262cad89d8631781db74e0927272a2faeb (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
36
37
38
// Copyright 2014 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.

#include "sync/engine/directory_cryptographer_provider.h"

#include "sync/syncable/directory.h"
#include "sync/syncable/syncable_read_transaction.h"

namespace syncer {

DirectoryCryptographerProvider::DirectoryCryptographerProvider(
    syncable::Directory* dir)
    : dir_(dir) {
}

DirectoryCryptographerProvider::~DirectoryCryptographerProvider() {
}

bool DirectoryCryptographerProvider::InitScopedCryptographerRef(
    ScopedCryptographerRef* scoped) {
  scoped->Initialize(new ScopedDirectoryCryptographerInternal(dir_));
  return scoped->IsValid();
}

ScopedDirectoryCryptographerInternal::ScopedDirectoryCryptographerInternal(
    syncable::Directory* dir)
    : dir_(dir), trans_(FROM_HERE, dir) {
}

ScopedDirectoryCryptographerInternal::~ScopedDirectoryCryptographerInternal() {
}

Cryptographer* ScopedDirectoryCryptographerInternal::Get() const {
  return dir_->GetCryptographer(&trans_);
}

}  // namespace syncer