Index: chrome/browser/sync/test/fake_encryptor.cc |
diff --git a/chrome/browser/sync/test/fake_encryptor.cc b/chrome/browser/sync/test/fake_encryptor.cc |
deleted file mode 100644 |
index c109ad7d5353d3d37037f7f7b2f9e2cebf51b4fc..0000000000000000000000000000000000000000 |
--- a/chrome/browser/sync/test/fake_encryptor.cc |
+++ /dev/null |
@@ -1,23 +0,0 @@ |
-// Copyright (c) 2012 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 "chrome/browser/sync/test/fake_encryptor.h" |
- |
-#include "base/base64.h" |
- |
-namespace browser_sync { |
- |
-FakeEncryptor::~FakeEncryptor() {} |
- |
-bool FakeEncryptor::EncryptString(const std::string& plaintext, |
- std::string* ciphertext) { |
- return base::Base64Encode(plaintext, ciphertext); |
-} |
- |
-bool FakeEncryptor::DecryptString(const std::string& ciphertext, |
- std::string* plaintext) { |
- return base::Base64Decode(ciphertext, plaintext); |
-} |
- |
-} // namespace browser_sync |