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

Unified Diff: sync/engine/cryptographer_provider.cc

Issue 413833002: sync: Introduce CryptographerProvider interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Typo fix and small cleanup 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 side-by-side diff with in-line comments
Download patch
Index: sync/engine/cryptographer_provider.cc
diff --git a/sync/engine/cryptographer_provider.cc b/sync/engine/cryptographer_provider.cc
new file mode 100644
index 0000000000000000000000000000000000000000..ce02c6bedec9eed67b06bed0ec8edba9dc6ec2f2
--- /dev/null
+++ b/sync/engine/cryptographer_provider.cc
@@ -0,0 +1,41 @@
+// 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/cryptographer_provider.h"
+
+namespace syncer {
+
+CryptographerProvider::CryptographerProvider() {
+}
+
+CryptographerProvider::~CryptographerProvider() {
+}
+
+ScopedCryptographer::ScopedCryptographer() {
+}
+
+ScopedCryptographer::~ScopedCryptographer() {
+}
+
+bool ScopedCryptographer::Initialize(ScopedCryptographerImpl* impl) {
+ scoped_cryptographer_impl_.reset(impl);
+ return IsValid();
+}
+
+bool ScopedCryptographer::IsValid() const {
+ return !!Get();
+}
+
+Cryptographer* ScopedCryptographer::Get() const {
+ if (!scoped_cryptographer_impl_)
+ return NULL;
+ return scoped_cryptographer_impl_->Get();
+}
+
+ScopedCryptographerImpl::ScopedCryptographerImpl() {
+}
+
+ScopedCryptographerImpl::~ScopedCryptographerImpl() {
+}
+};
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

Powered by Google App Engine
This is Rietveld 408576698