Index: Source/modules/webdatabase/DOMWindowWebDatabase.h |
diff --git a/Source/modules/webdatabase/DOMWindowWebDatabase.h b/Source/modules/webdatabase/DOMWindowWebDatabase.h |
index 0253c5168ca27763e234b22be1fd24f945fba33b..ab7fa457490aa690f7a93e40eb54e45662be450b 100644 |
--- a/Source/modules/webdatabase/DOMWindowWebDatabase.h |
+++ b/Source/modules/webdatabase/DOMWindowWebDatabase.h |
@@ -27,6 +27,7 @@ |
#ifndef DOMWindowWebDatabase_h |
#define DOMWindowWebDatabase_h |
+#include "core/dom/ExceptionCode.h" |
#include "wtf/PassRefPtr.h" |
#include "wtf/RefCounted.h" |
#include "wtf/RefPtr.h" |
@@ -37,12 +38,11 @@ namespace WebCore { |
class DOMWindow; |
class Database; |
class DatabaseCallback; |
-class ExceptionState; |
class Frame; |
class DOMWindowWebDatabase { |
public: |
- static PassRefPtr<Database> openDatabase(DOMWindow*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionState&); |
+ static PassRefPtr<Database> openDatabase(DOMWindow*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode&); |
private: |
DOMWindowWebDatabase() { }; |