Index: chrome/browser/autofill/autofill_manager_delegate.h |
diff --git a/chrome/browser/autofill/autofill_manager_delegate.h b/chrome/browser/autofill/autofill_manager_delegate.h |
index dda8bfe33287bd8a0366ff724b2beb71aca29648..4e23556ac758213be91f3bef51aaf371fedd3cad 100644 |
--- a/chrome/browser/autofill/autofill_manager_delegate.h |
+++ b/chrome/browser/autofill/autofill_manager_delegate.h |
@@ -11,18 +11,13 @@ class PasswordGenerator; |
namespace content { |
class BrowserContext; |
+struct PasswordForm; |
} |
namespace gfx { |
class Rect; |
} |
-namespace webkit { |
-namespace forms { |
-struct PasswordForm; |
-} |
-} |
- |
class InfoBarService; |
class PrefServiceBase; |
class Profile; |
@@ -73,7 +68,7 @@ class AutofillManagerDelegate { |
// specified form with the given bounds. |
virtual void ShowPasswordGenerationBubble( |
const gfx::Rect& bounds, |
- const webkit::forms::PasswordForm& form, |
+ const content::PasswordForm& form, |
autofill::PasswordGenerator* generator) = 0; |
}; |