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

Unified Diff: chrome/common/importer/importer_data_types.h

Issue 2470283002: Convert profile import IPCs to Mojo (Closed)
Patch Set: Merge Created 4 years 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
« no previous file with comments | « chrome/common/importer/OWNERS ('k') | chrome/common/importer/importer_data_types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..0fc90c62398a93eb89568ce78c8ded2bc9b232b6 100644
--- a/chrome/common/importer/importer_data_types.h
+++ b/chrome/common/importer/importer_data_types.h
@@ -59,14 +59,15 @@ 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);
~ImporterIE7PasswordInfo();
+ ImporterIE7PasswordInfo& operator=(const ImporterIE7PasswordInfo& other);
// 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 +76,6 @@ struct ImporterIE7PasswordInfo {
// When the login was imported.
base::Time date_created;
};
-#endif
// Mapped to history::VisitSource after import in the browser.
enum VisitSource {
« no previous file with comments | « chrome/common/importer/OWNERS ('k') | chrome/common/importer/importer_data_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698