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

Unified Diff: components/autofill/core/browser/webdata/autofill_table_encryptor_factory.cc

Issue 2698103002: Allow embedder to use custom cryptography in Autofill table. (Closed)
Patch Set: Changed the ifdef name space Created 3 years, 10 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: components/autofill/core/browser/webdata/autofill_table_encryptor_factory.cc
diff --git a/components/autofill/core/browser/webdata/autofill_table_encryptor_factory.cc b/components/autofill/core/browser/webdata/autofill_table_encryptor_factory.cc
new file mode 100644
index 0000000000000000000000000000000000000000..6ee6516d1546d496fdbbc4c9579cbbc72777a402
--- /dev/null
+++ b/components/autofill/core/browser/webdata/autofill_table_encryptor_factory.cc
@@ -0,0 +1,33 @@
+// Copyright 2017 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 "components/autofill/core/browser/webdata/autofill_table_encryptor_factory.h"
+
+#include "base/memory/ptr_util.h"
+#include "base/memory/singleton.h"
+#include "components/autofill/core/browser/webdata/system_encryptor.h"
+
+namespace autofill {
+
+AutofillTableEncryptorFactory::AutofillTableEncryptorFactory() = default;
+
+AutofillTableEncryptorFactory::~AutofillTableEncryptorFactory() = default;
+
+AutofillTableEncryptorFactory* AutofillTableEncryptorFactory::GetInstance() {
+ return base::Singleton<AutofillTableEncryptorFactory>::get();
+}
+
+std::unique_ptr<AutofillTableEncryptor>
+AutofillTableEncryptorFactory::Create() {
+ DCHECK(sequence_checker_.CalledOnValidSequence());
+ return delegate_ ? delegate_->Create() : base::MakeUnique<SystemEncryptor>();
+}
+
+void AutofillTableEncryptorFactory::SetDelegate(
+ std::unique_ptr<Delegate> delegate) {
+ DCHECK(sequence_checker_.CalledOnValidSequence());
+ delegate_ = std::move(delegate);
+}
+
+} // namespace autofill

Powered by Google App Engine
This is Rietveld 408576698