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

Unified Diff: components/password_manager/core/browser/export/csv_writer.cc

Issue 1193143003: Enable import/export of passwords into/from Password Manager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed import-complete dialog. Created 4 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
Index: components/password_manager/core/browser/export/csv_writer.cc
diff --git a/components/password_manager/core/browser/export/csv_writer.cc b/components/password_manager/core/browser/export/csv_writer.cc
index b3ea46bf65076a6f5f836e718b58a6081d9af5f4..46a9bef841b9e33fb19a9a2281537740f4730da8 100644
--- a/components/password_manager/core/browser/export/csv_writer.cc
+++ b/components/password_manager/core/browser/export/csv_writer.cc
@@ -65,7 +65,7 @@ void CSVFormatter::EndLine() {
namespace password_manager {
void WriteCSV(const std::vector<std::string>& column_names,
- const std::vector<std::map<std::string, std::string>>& records,
+ const std::vector<ColumnNameToValueMap>& records,
std::string* csv) {
DCHECK(csv);
csv->clear();

Powered by Google App Engine
This is Rietveld 408576698