Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 ScopedCryptographer::ScopedCryptographer() { | |
| 16 } | |
| 17 | |
| 18 ScopedCryptographer::~ScopedCryptographer() { | |
| 19 } | |
| 20 | |
| 21 bool ScopedCryptographer::Initialize(ScopedCryptographerImpl* impl) { | |
| 22 scoped_cryptographer_impl_.reset(impl); | |
| 23 return IsValid(); | |
| 24 } | |
| 25 | |
| 26 bool ScopedCryptographer::IsValid() const { | |
| 27 return !!Get(); | |
| 28 } | |
| 29 | |
| 30 Cryptographer* ScopedCryptographer::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 }; | |
|
Nicolas Zea
2014/07/24 22:16:42
This is the close namespace right? Shouldn't that
rlarocque
2014/07/24 22:23:13
I think that was from a bad copy/paste. Fixed.
S
| |
| OLD | NEW |