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

Unified Diff: components/password_manager/core/browser/types.h

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/types.h
diff --git a/components/password_manager/core/browser/types.h b/components/password_manager/core/browser/types.h
new file mode 100644
index 0000000000000000000000000000000000000000..aabe918acda427af3f25f73b47fb2a23c5c40196
--- /dev/null
+++ b/components/password_manager/core/browser/types.h
@@ -0,0 +1,12 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
vabr (Chromium) 2016/03/10 10:53:33 2016
xunlu 2016/03/16 07:23:59 Deleted this file.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include <map>
+#include <string>
+
+namespace password_manager {
+// An abstraction to map csv column name to value for convenience. See
+// csv_reader.h and csv_writer.h
+typedef std::map<std::string, std::string> ColumnNameToValueMap;
+}

Powered by Google App Engine
This is Rietveld 408576698