Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / webdatabase / SQLResultSet.h
index 79b9c49..4204f04 100644 (file)
 #ifndef SQLResultSet_h
 #define SQLResultSet_h
 
-#include "bindings/v8/ScriptWrappable.h"
+#include "bindings/core/v8/ScriptWrappable.h"
 #include "modules/webdatabase/DatabaseBasicTypes.h"
 #include "modules/webdatabase/SQLResultSetRowList.h"
 #include "wtf/ThreadSafeRefCounted.h"
 
-namespace WebCore {
+namespace blink {
 
 class ExceptionState;
 
-class SQLResultSet : public ThreadSafeRefCountedWillBeGarbageCollectedFinalized<SQLResultSet>, public ScriptWrappable {
+class SQLResultSet FINAL : public ThreadSafeRefCountedWillBeGarbageCollected<SQLResultSet>, public ScriptWrappable {
 public:
     static PassRefPtrWillBeRawPtr<SQLResultSet> create() { return adoptRefWillBeNoop(new SQLResultSet); }
     void trace(Visitor*);
@@ -63,6 +63,6 @@ private:
     bool m_isValid;
 };
 
-} // namespace WebCore
+} // namespace blink
 
 #endif // SQLResultSet_h