summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2009-08-14 15:53:19 +0100
committerBen Murdoch <benm@google.com>2009-08-14 15:53:19 +0100
commit5d642ece04e802dcbaa12629f75de3ea292e8444 (patch)
tree5fd143f3b3703ee8e450002ded2e7005f8b127b6 /WebCore/bindings
parenta2e6a074c9aaa2cb54aa85a656f7411c2a73f29e (diff)
downloadexternal_webkit-5d642ece04e802dcbaa12629f75de3ea292e8444.zip
external_webkit-5d642ece04e802dcbaa12629f75de3ea292e8444.tar.gz
external_webkit-5d642ece04e802dcbaa12629f75de3ea292e8444.tar.bz2
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