diff options
author | yaar@chromium.org <yaar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-27 22:41:42 +0000 |
---|---|---|
committer | yaar@chromium.org <yaar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-27 22:41:42 +0000 |
commit | 3845f63c7a70891a6ed6c32f04968b54e5c6d1be (patch) | |
tree | 8a851c0f3b7856aee10cff771baa405910aa1c27 /webkit/glue/webview_impl.cc | |
parent | 301d13e7464932720554613443c79d2dea15f73f (diff) | |
download | chromium_src-3845f63c7a70891a6ed6c32f04968b54e5c6d1be.zip chromium_src-3845f63c7a70891a6ed6c32f04968b54e5c6d1be.tar.gz chromium_src-3845f63c7a70891a6ed6c32f04968b54e5c6d1be.tar.bz2 |
Move glue/EditorClientImpl.h/cpp to webkit/api/src
Review URL: http://codereview.chromium.org/330021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30270 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webview_impl.cc')
-rw-r--r-- | webkit/glue/webview_impl.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/webkit/glue/webview_impl.cc b/webkit/glue/webview_impl.cc index 43c44a9d..97dce63 100644 --- a/webkit/glue/webview_impl.cc +++ b/webkit/glue/webview_impl.cc @@ -81,6 +81,7 @@ using namespace WebCore; using WebKit::ChromeClientImpl; +using WebKit::EditorClientImpl; using WebKit::PlatformKeyboardEventBuilder; using WebKit::PlatformMouseEventBuilder; using WebKit::PlatformWheelEventBuilder; @@ -191,7 +192,7 @@ class AutocompletePopupMenuClient : public WebCore::PopupMenuClient { EditorClientImpl* editor = static_cast<EditorClientImpl*>(webview_->page()->editorClient()); ASSERT(editor); - editor->OnAutofillSuggestionAccepted( + editor->onAutofillSuggestionAccepted( static_cast<WebCore::HTMLInputElement*>(text_field_.get())); } @@ -499,7 +500,7 @@ void WebViewImpl::MouseDown(const WebMouseEvent& event) { if (clicked_node.get() && clicked_node == GetFocusedNode()) { // Focus has not changed, show the autocomplete popup. static_cast<EditorClientImpl*>(page_->editorClient())-> - ShowFormAutofillForNode(clicked_node.get()); + showFormAutofillForNode(clicked_node.get()); } // Dispatch the contextmenu event regardless of if the click was swallowed. |