summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/bindings/v8/CustomElementWrapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/bindings/v8/CustomElementWrapper.h')
-rw-r--r--chromium/third_party/WebKit/Source/bindings/v8/CustomElementWrapper.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/chromium/third_party/WebKit/Source/bindings/v8/CustomElementWrapper.h b/chromium/third_party/WebKit/Source/bindings/v8/CustomElementWrapper.h
index c3cbbe8e58d..bf3ba6e8dce 100644
--- a/chromium/third_party/WebKit/Source/bindings/v8/CustomElementWrapper.h
+++ b/chromium/third_party/WebKit/Source/bindings/v8/CustomElementWrapper.h
@@ -31,6 +31,7 @@
#ifndef CustomElementWrapper_h
#define CustomElementWrapper_h
+#include "platform/heap/Handle.h"
#include "wtf/PassRefPtr.h"
#include <v8.h>
@@ -47,7 +48,7 @@ private:
friend v8::Handle<v8::Object> createV8HTMLWrapper(HTMLElement*, v8::Handle<v8::Object>, v8::Isolate*);
friend v8::Handle<v8::Object> createV8SVGWrapper(SVGElement*, v8::Handle<v8::Object>, v8::Isolate*);
- static v8::Handle<v8::Object> wrap(PassRefPtr<ElementType>, v8::Handle<v8::Object> creationContext, v8::Isolate*, v8::Handle<v8::Object> (*createSpecificWrapper)(ElementType* element, v8::Handle<v8::Object> creationContext, v8::Isolate*));
+ static v8::Handle<v8::Object> wrap(PassRefPtrWillBeRawPtr<ElementType>, v8::Handle<v8::Object> creationContext, v8::Isolate*, v8::Handle<v8::Object> (*createSpecificWrapper)(ElementType* element, v8::Handle<v8::Object> creationContext, v8::Isolate*));
};
} // namespace WebCore