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

Unified Diff: sync/test/engine/simple_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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sync/test/engine/simple_cryptographer_provider.h ('k') | sync/util/cryptographer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/test/engine/simple_cryptographer_provider.cc
diff --git a/sync/test/engine/simple_cryptographer_provider.cc b/sync/test/engine/simple_cryptographer_provider.cc
deleted file mode 100644
index 0e2fa99cece46cf10492d5195fe3ffba652c4553..0000000000000000000000000000000000000000
--- a/sync/test/engine/simple_cryptographer_provider.cc
+++ /dev/null
@@ -1,35 +0,0 @@
-// 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/test/engine/simple_cryptographer_provider.h"
-
-namespace syncer {
-
-SimpleCryptographerProvider::SimpleCryptographerProvider(
- Cryptographer* cryptographer)
- : cryptographer_(cryptographer) {
-}
-
-SimpleCryptographerProvider::~SimpleCryptographerProvider() {
-}
-
-bool SimpleCryptographerProvider::InitScopedCryptographerRef(
- ScopedCryptographerRef* scoped) {
- scoped->Initialize(new SimpleScopedCryptographerInternal(cryptographer_));
- return scoped->IsValid();
-}
-
-SimpleScopedCryptographerInternal::SimpleScopedCryptographerInternal(
- Cryptographer* cryptographer)
- : cryptographer_(cryptographer) {
-}
-
-SimpleScopedCryptographerInternal::~SimpleScopedCryptographerInternal() {
-}
-
-Cryptographer* SimpleScopedCryptographerInternal::Get() const {
- return cryptographer_;
-}
-
-} // namespace syncer
« no previous file with comments | « sync/test/engine/simple_cryptographer_provider.h ('k') | sync/util/cryptographer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698