summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-08-14 07:55:44 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2009-08-14 07:55:44 -0700
commit7a4d3c3a5889a3486eeb8d9bd61d64d669712b78 (patch)
tree6b30f5a0db037af4805f2b15da97dbb96703df63 /WebCore/bindings
parentfc3566dd8afb671f5f2629103dc98fc790e21a90 (diff)
parent5d642ece04e802dcbaa12629f75de3ea292e8444 (diff)
downloadexternal_webkit-7a4d3c3a5889a3486eeb8d9bd61d64d669712b78.zip
external_webkit-7a4d3c3a5889a3486eeb8d9bd61d64d669712b78.tar.gz
external_webkit-7a4d3c3a5889a3486eeb8d9bd61d64d669712b78.tar.bz2
Merge change 21269 into master-webkit-merge
* changes: Rename functions in TouchList binding.
Diffstat (limited to 'WebCore/bindings')
-rw-r--r--WebCore/bindings/v8/custom/V8TouchListCustom.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/bindings/v8/custom/V8TouchListCustom.cpp b/WebCore/bindings/v8/custom/V8TouchListCustom.cpp
index 7cf893d..97aad52 100644
--- a/WebCore/bindings/v8/custom/V8TouchListCustom.cpp
+++ b/WebCore/bindings/v8/custom/V8TouchListCustom.cpp
@@ -38,7 +38,7 @@
#include "V8Binding.h"
#include "V8CustomBinding.h"
-#include "V8Proxy.h"
+#include "V8DOMWrapper.h"
#include <wtf/RefPtr.h>
@@ -47,12 +47,12 @@ namespace WebCore {
INDEXED_PROPERTY_GETTER(TouchList)
{
INC_STATS("DOM.TouchList.IndexedPropertyGetter");
- TouchList* imp = V8Proxy::ToNativeObject<TouchList>(V8ClassIndex::TOUCHLIST, info.Holder());
+ TouchList* imp = V8DOMWrapper::convertToNativeObject<TouchList>(V8ClassIndex::TOUCHLIST, info.Holder());
RefPtr<Touch> result = imp->item(index);
if (!result)
return notHandledByInterceptor();
- return V8Proxy::ToV8Object(V8ClassIndex::TOUCH, result.get());
+ return V8DOMWrapper::convertToV8Object(V8ClassIndex::TOUCH, result.get());
}
} // namespace WebCore