From 13bb19301edbd208c222ac7cd9c68f74fbc30aa4 Mon Sep 17 00:00:00 2001 From: "darin@chromium.org" Date: Mon, 25 May 2009 07:32:31 +0000 Subject: Update webkit to r44123 This required dealing with a few changes in WebKit: 1- ImageBuffer::create() now returns a PassOwnPtr instead of an auto_ptr. 2- ChromeClient::createHTMLParserQuirks() now returns a PassOwnPtr instead of a raw pointer. 3- HTMLFormControlElement::onChange was renamed dispatchFormControlChangeEvent. 4- dom/SelectElement.{h,cpp} were added to the tree. TEST=none R=ukai BUG=none Review URL: http://codereview.chromium.org/115751 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16849 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/glue/dom_operations.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'webkit/glue/dom_operations.cc') diff --git a/webkit/glue/dom_operations.cc b/webkit/glue/dom_operations.cc index f0adc1a..16f364a 100644 --- a/webkit/glue/dom_operations.cc +++ b/webkit/glue/dom_operations.cc @@ -236,7 +236,7 @@ static bool FillFormToUploadFileImpl(WebCore::HTMLFormElement* fe, std::vector::iterator changed_ie; for (changed_ie = changed.begin(); changed_ie != changed.end(); ++changed_ie) { - (*changed_ie)->onChange(); + (*changed_ie)->dispatchFormControlChangeEvent(); (*changed_ie)->deref(); } @@ -302,7 +302,7 @@ static bool FillFormImpl(FormElements* fe, const FormData& data, bool submit) { continue; it->second->setValue(StdWStringToString(data_map[it->first])); it->second->setAutofilled(true); - it->second->onChange(); + it->second->dispatchFormControlChangeEvent(); } if (submit && submit_found) { -- cgit v1.1