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

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

Issue 23742004: Move PasswordForm from //content to //autofill. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_password_form_conversion_utils
Patch Set: Rebase Created 7 years, 3 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: chrome/common/importer/importer_bridge.h
diff --git a/chrome/common/importer/importer_bridge.h b/chrome/common/importer/importer_bridge.h
index 94a89c24c0ddbfa177301fe8dda7a951982bac0e..8aaf40d550bfb6c4dac9a6636d9eb7fd8e3f273d 100644
--- a/chrome/common/importer/importer_bridge.h
+++ b/chrome/common/importer/importer_bridge.h
@@ -19,6 +19,10 @@ class GURL;
struct ImportedBookmarkEntry;
struct ImportedFaviconUsage;
+namespace autofill {
+struct PasswordForm;
+}
+
namespace importer {
#if defined(OS_WIN)
struct ImporterIE7PasswordInfo;
@@ -27,10 +31,6 @@ struct ImporterURlRow;
struct URLKeywordInfo;
}
-namespace content {
-struct PasswordForm;
-}
-
class ImporterBridge : public base::RefCountedThreadSafe<ImporterBridge> {
public:
ImporterBridge();
@@ -61,7 +61,7 @@ class ImporterBridge : public base::RefCountedThreadSafe<ImporterBridge> {
virtual void SetFirefoxSearchEnginesXMLData(
const std::vector<std::string>& search_engine_data) = 0;
- virtual void SetPasswordForm(const content::PasswordForm& form) = 0;
+ virtual void SetPasswordForm(const autofill::PasswordForm& form) = 0;
// Notifies the coordinator that the import operation has begun.
virtual void NotifyStarted() = 0;
« no previous file with comments | « chrome/browser/ui/webui/options/password_manager_handler.cc ('k') | chrome/common/importer/profile_import_process_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698