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

Unified Diff: chrome/browser/ui/autofill/autofill_popup_controller.h

Issue 1570783003: [Autofill] Move functions from the AutofillPopupController to AutofillPopupLayoutModel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: AutofillPopupViewHelper Created 4 years, 11 months 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/ui/autofill/autofill_popup_controller.h
diff --git a/chrome/browser/ui/autofill/autofill_popup_controller.h b/chrome/browser/ui/autofill/autofill_popup_controller.h
index 8f226988cf04757a46eef30b27ceba1393dc7bfb..b72340ef0cb5fc858d24c8c01e122467ee70c888 100644
--- a/chrome/browser/ui/autofill/autofill_popup_controller.h
+++ b/chrome/browser/ui/autofill/autofill_popup_controller.h
@@ -33,18 +33,10 @@ class AutofillPopupController : public AutofillPopupViewDelegate {
// Accepts the suggestion at |index|.
virtual void AcceptSuggestion(size_t index) = 0;
- // Gets the resource value for the given resource, returning -1 if the
- // resource isn't recognized.
- virtual int GetIconResourceID(const base::string16& resource_name) const = 0;
-
// Returns true if the given index refers to an element that is a warning
// rather than an Autofill suggestion.
virtual bool IsWarning(size_t index) const = 0;
- // Returns the bounds of the item at |index| in the popup, relative to
- // the top left of the popup.
- virtual gfx::Rect GetRowBounds(size_t index) = 0;
-
// Returns the number of lines of data that there are.
virtual size_t GetLineCount() const = 0;

Powered by Google App Engine
This is Rietveld 408576698