Index: chrome/browser/autofill/autofill_manager.h |
diff --git a/chrome/browser/autofill/autofill_manager.h b/chrome/browser/autofill/autofill_manager.h |
index 9079d092e4bb3d755171134606245da54fa87951..b3d45977bfd2c803a465231c5f866a281e55e68f 100644 |
--- a/chrome/browser/autofill/autofill_manager.h |
+++ b/chrome/browser/autofill/autofill_manager.h |
@@ -71,12 +71,14 @@ class AutofillManager : public content::WebContentsObserver, |
} |
// Called from our external delegate so they cannot be private. |
- void OnFillAutofillFormData(int query_id, |
- const webkit::forms::FormData& form, |
- const webkit::forms::FormField& field, |
- int unique_id); |
+ virtual void OnFillAutofillFormData(int query_id, |
+ const webkit::forms::FormData& form, |
+ const webkit::forms::FormField& field, |
+ int unique_id); |
void OnDidShowAutofillSuggestions(bool is_new_popup); |
void OnDidFillAutofillFormData(const base::TimeTicks& timestamp); |
+ void OnShowAutofillDialog(); |
+ void OnDidPreviewAutofillFormData(); |
protected: |
// Only test code should subclass AutofillManager. |
@@ -158,8 +160,6 @@ class AutofillManager : public content::WebContentsObserver, |
const webkit::forms::FormField& field, |
const gfx::Rect& bounding_box, |
bool display_warning); |
- void OnShowAutofillDialog(); |
- void OnDidPreviewAutofillFormData(); |
void OnDidEndTextFieldEditing(); |
void OnHideAutofillPopup(); |