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

Unified Diff: chrome/browser/autofill/autofill_manager.h

Issue 8490017: Setting up external delegate calls to allow a future delegate to handle autofill (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Adding code review changes Created 9 years, 1 month 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/browser/autofill/autofill_manager.h
diff --git a/chrome/browser/autofill/autofill_manager.h b/chrome/browser/autofill/autofill_manager.h
index 4115187595fbdc0b1ffb6f53b0d90c6dae36f418..6ddd7add1cf123169a9dbadbd50eb01ebd8bc359 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 OnShowAutofillSuggestions(
+ 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);
Ilya Sherman 2011/11/08 21:06:16 nit: I think this method is no longer used -- righ
csharp 2011/11/09 16:18:37 Correct and removed. On 2011/11/08 21:06:16, Ilya
+ void OnSetAutofillElementBounds(int x, int y, int width, int height);
John Grabowski 2011/11/08 20:46:02 Label coordinates as screen or document relative.
csharp 2011/11/09 16:18:37 No longer used, but I added comment to new functio
+ void OnHideAutofillPopup();
// Fills |host| with the RenderViewHost for this tab.
// Returns false if Autofill is disabled or if the host is unavailable.

Powered by Google App Engine
This is Rietveld 408576698