Index: chrome/common/importer/importer_data_types.h |
diff --git a/chrome/common/importer/importer_data_types.h b/chrome/common/importer/importer_data_types.h |
index be8163f0ada81c484c64364961d65bf51ff67ec6..6316a34b41ac97ea5c3db264d4625c3216689d32 100644 |
--- a/chrome/common/importer/importer_data_types.h |
+++ b/chrome/common/importer/importer_data_types.h |
@@ -59,14 +59,14 @@ struct SearchEngineInfo { |
base::string16 display_name; |
}; |
-#if defined(OS_WIN) |
// Contains the information read from the IE7/IE8 Storage2 key in the registry. |
struct ImporterIE7PasswordInfo { |
ImporterIE7PasswordInfo(); |
+ ImporterIE7PasswordInfo(const ImporterIE7PasswordInfo& other); |
Sam McNally
2016/11/07 06:31:07
Add an assignment operator.
tibell
2016/11/07 23:34:24
Done.
|
~ImporterIE7PasswordInfo(); |
// Hash of the url. |
- std::wstring url_hash; |
+ base::string16 url_hash; |
// Encrypted data containing the username, password and some more |
// undocumented fields. |
@@ -75,7 +75,6 @@ struct ImporterIE7PasswordInfo { |
// When the login was imported. |
base::Time date_created; |
}; |
-#endif |
// Mapped to history::VisitSource after import in the browser. |
enum VisitSource { |