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

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

Issue 413833002: sync: Introduce CryptographerProvider interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: s/ScopedCryptographer/ScopedCryptographerRef/ Created 6 years, 5 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
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(ScopedCryptographerImpl* impl) {
22 scoped_cryptographer_impl_.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_impl_)
32 return NULL;
33 return scoped_cryptographer_impl_->Get();
34 }
35
36 ScopedCryptographerImpl::ScopedCryptographerImpl() {
37 }
38
39 ScopedCryptographerImpl::~ScopedCryptographerImpl() {
40 }
41
42 } // namespace syncer
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698