Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / track / vtt / VTTRegionList.h
index edb87d6..d18ac97 100644 (file)
 #ifndef VTTRegionList_h
 #define VTTRegionList_h
 
+#include "bindings/core/v8/ScriptWrappable.h"
 #include "core/html/track/vtt/VTTRegion.h"
 #include "wtf/PassRefPtr.h"
 #include "wtf/RefCounted.h"
 #include "wtf/Vector.h"
 
-namespace WebCore {
+namespace blink {
 
-class VTTRegionList FINAL : public RefCountedWillBeGarbageCollected<VTTRegionList> {
+class VTTRegionList final : public RefCountedWillBeGarbageCollected<VTTRegionList>, public ScriptWrappable {
+    DEFINE_WRAPPERTYPEINFO();
 public:
     static PassRefPtrWillBeRawPtr<VTTRegionList> create()
     {
@@ -53,9 +55,9 @@ public:
 private:
     VTTRegionList();
 
-    WillBeHeapVector<RefPtrWillBeMember<VTTRegion> > m_list;
+    WillBeHeapVector<RefPtrWillBeMember<VTTRegion>> m_list;
 };
 
-} // namespace WebCore
+} // namespace blink
 
-#endif
+#endif // VTTRegionList_h