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

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

Issue 2698103002: Allow embedder to use custom cryptography in Autofill table. (Closed)
Patch Set: Allow embedder to use custom cryptography in Autofill table. 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.h
diff --git a/components/autofill/core/browser/webdata/autofill_table.h b/components/autofill/core/browser/webdata/autofill_table.h
index dc08b9b5ea82832be36792708e28d5e772ca7227..4966a6fb5ef16401e43cf6ca3d12a23a6b08b6b4 100644
--- a/components/autofill/core/browser/webdata/autofill_table.h
+++ b/components/autofill/core/browser/webdata/autofill_table.h
@@ -29,6 +29,7 @@ namespace autofill {
class AutofillChange;
class AutofillEntry;
class AutofillProfile;
+class AutofillTableEncryptor;
class AutofillTableTest;
class CreditCard;
@@ -251,6 +252,8 @@ struct FormFieldData;
class AutofillTable : public WebDatabaseTable {
public:
AutofillTable();
+ explicit AutofillTable(
+ std::unique_ptr<AutofillTableEncryptor> autofill_table_encryptor);
Roger McFarlane (Chromium) 2017/02/22 22:50:52 This additional public constructor seems redundant
devarajn 2017/02/22 23:10:54 We can use this constructor to inject mocks in uni
Roger McFarlane (Chromium) 2017/02/22 23:20:34 The factory can also be used to inject mocks into
devarajn 2017/02/22 23:26:05 Alright. I will remove this constructor.
~AutofillTable() override;
// Retrieves the AutofillTable* owned by |db|.
@@ -467,6 +470,8 @@ class AutofillTable : public WebDatabaseTable {
static const size_t kMaxDataLength;
private:
+ std::unique_ptr<AutofillTableEncryptor> autofill_table_encryptor_;
please use gerrit instead 2017/02/22 22:34:58 Please move the variable below all methods. (Line
devarajn 2017/02/22 23:10:54 Acknowledged.
+
FRIEND_TEST_ALL_PREFIXES(AutofillTableTest, Autofill);
FRIEND_TEST_ALL_PREFIXES(AutofillTableTest, Autofill_AddChanges);
FRIEND_TEST_ALL_PREFIXES(

Powered by Google App Engine
This is Rietveld 408576698