summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/modules/webdatabase/DOMWindowWebDatabase.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/modules/webdatabase/DOMWindowWebDatabase.h')
-rw-r--r--chromium/third_party/WebKit/Source/modules/webdatabase/DOMWindowWebDatabase.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/chromium/third_party/WebKit/Source/modules/webdatabase/DOMWindowWebDatabase.h b/chromium/third_party/WebKit/Source/modules/webdatabase/DOMWindowWebDatabase.h
index 048bbc2d984..ce0833a594f 100644
--- a/chromium/third_party/WebKit/Source/modules/webdatabase/DOMWindowWebDatabase.h
+++ b/chromium/third_party/WebKit/Source/modules/webdatabase/DOMWindowWebDatabase.h
@@ -27,6 +27,7 @@
#ifndef DOMWindowWebDatabase_h
#define DOMWindowWebDatabase_h
+#include "platform/heap/Handle.h"
#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
#include "wtf/RefPtr.h"
@@ -34,15 +35,15 @@
namespace WebCore {
-class DOMWindow;
+class LocalDOMWindow;
class Database;
class DatabaseCallback;
class ExceptionState;
-class Frame;
+class LocalFrame;
class DOMWindowWebDatabase {
public:
- static PassRefPtr<Database> openDatabase(DOMWindow*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState&);
+ static PassRefPtrWillBeRawPtr<Database> openDatabase(LocalDOMWindow&, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState&);
private:
DOMWindowWebDatabase() { };