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

Unified Diff: sync/engine/directory_cryptographer_provider.cc

Issue 413833002: sync: Introduce CryptographerProvider interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Renames 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
« no previous file with comments | « sync/engine/directory_cryptographer_provider.h ('k') | sync/sync_core.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/engine/directory_cryptographer_provider.cc
diff --git a/sync/engine/directory_cryptographer_provider.cc b/sync/engine/directory_cryptographer_provider.cc
new file mode 100644
index 0000000000000000000000000000000000000000..a9cd2a262cad89d8631781db74e0927272a2faeb
--- /dev/null
+++ b/sync/engine/directory_cryptographer_provider.cc
@@ -0,0 +1,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
« no previous file with comments | « sync/engine/directory_cryptographer_provider.h ('k') | sync/sync_core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698