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

Unified Diff: chrome/browser/sync/test/fake_encryptor.h

Issue 9699057: [Sync] Move 'sync' target to sync/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Tim's comments Created 8 years, 9 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 | « chrome/browser/sync/test/engine/test_user_share.h ('k') | chrome/browser/sync/test/fake_encryptor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/test/fake_encryptor.h
diff --git a/chrome/browser/sync/test/fake_encryptor.h b/chrome/browser/sync/test/fake_encryptor.h
deleted file mode 100644
index d08d7d84533ec96103ac88d42ae6aeb814d69cde..0000000000000000000000000000000000000000
--- a/chrome/browser/sync/test/fake_encryptor.h
+++ /dev/null
@@ -1,29 +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.
-
-#ifndef CHROME_BROWSER_SYNC_TEST_FAKE_ENCRYPTOR_H_
-#define CHROME_BROWSER_SYNC_TEST_FAKE_ENCRYPTOR_H_
-#pragma once
-
-#include "base/compiler_specific.h"
-#include "chrome/browser/sync/util/encryptor.h"
-
-namespace browser_sync {
-
-// Encryptor which simply base64-encodes the plaintext to get the
-// ciphertext. Obviously, this should be used only for testing.
-class FakeEncryptor : public Encryptor {
- public:
- virtual ~FakeEncryptor();
-
- virtual bool EncryptString(const std::string& plaintext,
- std::string* ciphertext) OVERRIDE;
-
- virtual bool DecryptString(const std::string& ciphertext,
- std::string* plaintext) OVERRIDE;
-};
-
-} // namespace browser_sync
-
-#endif // CHROME_BROWSER_SYNC_TEST_FAKE_ENCRYPTOR_H_
« no previous file with comments | « chrome/browser/sync/test/engine/test_user_share.h ('k') | chrome/browser/sync/test/fake_encryptor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698