summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/modules/webdatabase/WorkerGlobalScopeWebDatabase.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/modules/webdatabase/WorkerGlobalScopeWebDatabase.h')
-rw-r--r--chromium/third_party/WebKit/Source/modules/webdatabase/WorkerGlobalScopeWebDatabase.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/chromium/third_party/WebKit/Source/modules/webdatabase/WorkerGlobalScopeWebDatabase.h b/chromium/third_party/WebKit/Source/modules/webdatabase/WorkerGlobalScopeWebDatabase.h
index d3b41239f9f..f0cec067598 100644
--- a/chromium/third_party/WebKit/Source/modules/webdatabase/WorkerGlobalScopeWebDatabase.h
+++ b/chromium/third_party/WebKit/Source/modules/webdatabase/WorkerGlobalScopeWebDatabase.h
@@ -27,6 +27,7 @@
#ifndef WorkerGlobalScopeWebDatabase_h
#define WorkerGlobalScopeWebDatabase_h
+#include "platform/heap/Handle.h"
#include "wtf/Forward.h"
#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
@@ -42,8 +43,8 @@ class WorkerGlobalScope;
class WorkerGlobalScopeWebDatabase {
public:
- static PassRefPtr<Database> openDatabase(WorkerGlobalScope*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState&);
- static PassRefPtr<DatabaseSync> openDatabaseSync(WorkerGlobalScope*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState&);
+ static PassRefPtrWillBeRawPtr<Database> openDatabase(WorkerGlobalScope&, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState&);
+ static PassRefPtrWillBeRawPtr<DatabaseSync> openDatabaseSync(WorkerGlobalScope&, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState&);
private:
WorkerGlobalScopeWebDatabase() { };