| 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;
|
|
|