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

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

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.h
diff --git a/components/autofill/core/browser/webdata/autofill_table_encryptor_factory.h b/components/autofill/core/browser/webdata/autofill_table_encryptor_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..aa0d52de6016a04c3579898d848885bcd0ba16ed
--- /dev/null
+++ b/components/autofill/core/browser/webdata/autofill_table_encryptor_factory.h
@@ -0,0 +1,53 @@
+// 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.
+#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_TABLE_ENCRYPTOR_FACTORY_H_
+#define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_TABLE_ENCRYPTOR_FACTORY_H_
+
+#include <memory>
+
+#include "base/sequence_checker.h"
+
+namespace base {
+template <typename T>
+struct DefaultSingletonTraits;
+} // namespace base
+
+namespace autofill {
+
+class AutofillTableEncryptor;
+
+// Factory for creating Autofill table encryptor.
+// If |delegate_| is set, then |delegate_| is used to create encryptor,
+// else default encrytor (SystemEncryptor) is returned.
+class AutofillTableEncryptorFactory {
+ public:
+ // Embedders are recommended to use this delegate to inject
+ // their encryptor into Autofill table.
+ class Delegate {
+ public:
+ virtual ~Delegate() = default;
+
+ virtual std::unique_ptr<AutofillTableEncryptor> Create() = 0;
+ };
+
+ static AutofillTableEncryptorFactory* GetInstance();
+
+ std::unique_ptr<AutofillTableEncryptor> Create();
+
+ void SetDelegate(std::unique_ptr<Delegate> delegate);
+
+ private:
+ AutofillTableEncryptorFactory();
+ ~AutofillTableEncryptorFactory();
+
+ std::unique_ptr<Delegate> delegate_;
+ base::SequenceChecker sequence_checker_;
+
+ friend struct base::DefaultSingletonTraits<AutofillTableEncryptorFactory>;
+ DISALLOW_COPY_AND_ASSIGN(AutofillTableEncryptorFactory);
+};
+
+} // namespace autofill
+
+#endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_TABLE_ENCRYPTOR_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698