Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: sync/engine/cryptographer_provider.cc

Issue 452283003: sync: Finish non-blocking type encryption support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More cryptographer testing Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sync/engine/cryptographer_provider.h ('k') | sync/engine/directory_cryptographer_provider.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 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 #include "sync/engine/cryptographer_provider.h"
6
7 namespace syncer {
8
9 CryptographerProvider::CryptographerProvider() {
10 }
11
12 CryptographerProvider::~CryptographerProvider() {
13 }
14
15 ScopedCryptographerRef::ScopedCryptographerRef() {
16 }
17
18 ScopedCryptographerRef::~ScopedCryptographerRef() {
19 }
20
21 bool ScopedCryptographerRef::Initialize(ScopedCryptographerInternal* impl) {
22 scoped_cryptographer_internal_.reset(impl);
23 return IsValid();
24 }
25
26 bool ScopedCryptographerRef::IsValid() const {
27 return !!Get();
28 }
29
30 Cryptographer* ScopedCryptographerRef::Get() const {
31 if (!scoped_cryptographer_internal_)
32 return NULL;
33 return scoped_cryptographer_internal_->Get();
34 }
35
36 ScopedCryptographerInternal::ScopedCryptographerInternal() {
37 }
38
39 ScopedCryptographerInternal::~ScopedCryptographerInternal() {
40 }
41
42 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/engine/cryptographer_provider.h ('k') | sync/engine/directory_cryptographer_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698