Index: chrome/browser/autofill/autofill_manager.h |
diff --git a/chrome/browser/autofill/autofill_manager.h b/chrome/browser/autofill/autofill_manager.h |
index 4115187595fbdc0b1ffb6f53b0d90c6dae36f418..29aa2473a2d399a6f822c866871f1937c86b64b9 100644 |
--- a/chrome/browser/autofill/autofill_manager.h |
+++ b/chrome/browser/autofill/autofill_manager.h |
@@ -154,6 +154,14 @@ class AutofillManager : public TabContentsObserver, |
void OnDidPreviewAutofillFormData(); |
void OnDidFillAutofillFormData(const base::TimeTicks& timestamp); |
void OnDidShowAutofillSuggestions(bool is_new_popup); |
+ void ShowAutofillSuggestions( |
+ int query_id, |
+ const std::vector<string16>& autofill_values, |
+ const std::vector<string16>& autofill_labels, |
+ const std::vector<string16>& autofill_icons, |
+ const std::vector<int>& autofill_unique_ids); |
+ void SetAutofillElementBounds(int x, int y, int width, int height); |
+ void HideAutofillPopup(); |
Ilya Sherman
2011/11/07 21:48:49
nit: These should be prefixed with "On", e.g. "OnH
csharp1
2011/11/08 19:59:00
Done.
|
// Fills |host| with the RenderViewHost for this tab. |
// Returns false if Autofill is disabled or if the host is unavailable. |