Home
last modified time | relevance | path

Searched refs:m_autofillPopupClient (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
DWebViewImpl.cpp998 if (!m_autofillPopupClient->canRemoveSuggestionAtIndex(selectedIndex)) in autocompleteHandleKeyEvent()
1002 WebString value = m_autofillPopupClient->itemText(selectedIndex); in autocompleteHandleKeyEvent()
1006 m_autofillPopupClient->removeSuggestionAtIndex(selectedIndex); in autocompleteHandleKeyEvent()
3525 if (!m_autofillPopupClient) in applyAutofillSuggestions()
3526 m_autofillPopupClient = adoptPtr(new AutofillPopupMenuClient); in applyAutofillSuggestions()
3528 m_autofillPopupClient->initialize( in applyAutofillSuggestions()
3534 m_autofillPopup = PopupContainer::create(m_autofillPopupClient.get(), in applyAutofillSuggestions()
3788 if (!m_autofillPopupClient->listSize()) { in refreshAutofillPopup()
4107 if (m_autofillPopupClient && listIndex < m_autofillPopupClient->getSuggestionsCount()) in selectAutofillSuggestionAtIndex()
4108 m_autofillPopupClient->valueChanged(listIndex); in selectAutofillSuggestionAtIndex()
DWebViewImpl.h750 OwnPtr<AutofillPopupMenuClient> m_autofillPopupClient; variable