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

Unified Diff: Source/WebKit/chromium/src/ChromeClientImpl.cpp

Issue 12670015: Revert 146672 "Add client callbacks to notify of changes of asso..." (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1453/
Patch Set: Created 7 years, 9 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
« no previous file with comments | « Source/WebKit/chromium/src/ChromeClientImpl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebKit/chromium/src/ChromeClientImpl.cpp
===================================================================
--- Source/WebKit/chromium/src/ChromeClientImpl.cpp (revision 146918)
+++ Source/WebKit/chromium/src/ChromeClientImpl.cpp (working copy)
@@ -77,7 +77,6 @@
#include "Settings.h"
#include "TextFieldDecorationElement.h"
#include "WebAccessibilityObject.h"
-#include "WebAutofillClient.h"
#if ENABLE(INPUT_TYPE_COLOR)
#include "WebColorChooser.h"
#endif
@@ -1145,22 +1144,6 @@
}
#endif
-void ChromeClientImpl::didAssociateFormControls(const Vector<Element*>& elements)
-{
- if (!m_webView->autofillClient())
- return;
- WebVector<WebNode> elementVector(static_cast<size_t>(elements.size()));
- size_t elementsCount = elements.size();
- for (size_t i = 0; i < elementsCount; ++i)
- elementVector[i] = elements[i];
- m_webView->autofillClient()->didAssociateFormControls(elementVector);
-}
-
-bool ChromeClientImpl::shouldNotifyOnFormChanges()
-{
- return true;
-}
-
#if ENABLE(NAVIGATOR_CONTENT_UTILS)
PassOwnPtr<NavigatorContentUtilsClientImpl> NavigatorContentUtilsClientImpl::create(WebViewImpl* webView)
{
« no previous file with comments | « Source/WebKit/chromium/src/ChromeClientImpl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698