| Index: Source/modules/webdatabase/SQLException.h
|
| diff --git a/Source/modules/webdatabase/SQLException.h b/Source/modules/webdatabase/SQLException.h
|
| index 9b0293790a51154c23bd7ac328f76ec64150671a..65a5d94e20380a263cd16dff4fb607fadcb428af 100644
|
| --- a/Source/modules/webdatabase/SQLException.h
|
| +++ b/Source/modules/webdatabase/SQLException.h
|
| @@ -31,11 +31,12 @@
|
| #ifndef SQLException_h
|
| #define SQLException_h
|
|
|
| +#include "bindings/v8/ScriptWrappable.h"
|
| #include "core/dom/ExceptionBase.h"
|
|
|
| namespace WebCore {
|
|
|
| -class SQLException : public ExceptionBase {
|
| +class SQLException : public ExceptionBase, public ScriptWrappable {
|
| public:
|
| static PassRefPtr<SQLException> create(const ExceptionCodeDescription& description)
|
| {
|
| @@ -62,6 +63,7 @@ private:
|
| explicit SQLException(const ExceptionCodeDescription& description)
|
| : ExceptionBase(description)
|
| {
|
| + ScriptWrappable::init(this);
|
| }
|
| };
|
|
|
|
|