Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGUnitTypes.h
index c87ad03..3e0dac5 100644 (file)
 #ifndef SVGUnitTypes_h
 #define SVGUnitTypes_h
 
+#include "bindings/core/v8/ScriptWrappable.h"
 #include "core/svg/SVGEnumeration.h"
 #include "wtf/RefCounted.h"
 
-namespace WebCore {
+namespace blink {
 
-class SVGUnitTypes : public RefCounted<SVGUnitTypes> {
+class SVGUnitTypes : public RefCounted<SVGUnitTypes>, public ScriptWrappable {
 public:
     enum SVGUnitType {
         SVG_UNIT_TYPE_UNKNOWN               = 0,
@@ -34,7 +35,7 @@ public:
     };
 
 private:
-    SVGUnitTypes() { }
+    SVGUnitTypes(); // No instantiation.
 };
 template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGUnitTypes::SVGUnitType>();