summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/bindings/js/JSDOMWrapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/bindings/js/JSDOMWrapper.h')
-rw-r--r--Source/WebCore/bindings/js/JSDOMWrapper.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/WebCore/bindings/js/JSDOMWrapper.h b/Source/WebCore/bindings/js/JSDOMWrapper.h
index 0f8031c..1484dc6 100644
--- a/Source/WebCore/bindings/js/JSDOMWrapper.h
+++ b/Source/WebCore/bindings/js/JSDOMWrapper.h
@@ -26,16 +26,15 @@
namespace WebCore {
-// FIXME: Rename to JSDOMWrapper.
-class DOMObject : public JSC::JSObjectWithGlobalObject {
+class JSDOMWrapper : public JSC::JSObjectWithGlobalObject {
protected:
- explicit DOMObject(JSC::JSGlobalObject* globalObject, NonNullPassRefPtr<JSC::Structure> structure)
+ explicit JSDOMWrapper(JSC::JSGlobalObject* globalObject, JSC::Structure* structure)
: JSObjectWithGlobalObject(globalObject, structure)
{
}
#ifndef NDEBUG
- virtual ~DOMObject();
+ virtual ~JSDOMWrapper();
#endif
};