summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/modules/webdatabase/SQLStatementSync.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/modules/webdatabase/SQLStatementSync.h')
-rw-r--r--chromium/third_party/WebKit/Source/modules/webdatabase/SQLStatementSync.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/chromium/third_party/WebKit/Source/modules/webdatabase/SQLStatementSync.h b/chromium/third_party/WebKit/Source/modules/webdatabase/SQLStatementSync.h
index d8922125e00..b3a42f46232 100644
--- a/chromium/third_party/WebKit/Source/modules/webdatabase/SQLStatementSync.h
+++ b/chromium/third_party/WebKit/Source/modules/webdatabase/SQLStatementSync.h
@@ -33,6 +33,7 @@
#include "modules/webdatabase/sqlite/SQLValue.h"
#include "modules/webdatabase/DatabaseBasicTypes.h"
+#include "platform/heap/Handle.h"
#include "wtf/Forward.h"
#include "wtf/Vector.h"
#include "wtf/text/WTFString.h"
@@ -47,7 +48,7 @@ class SQLStatementSync {
public:
SQLStatementSync(const String& statement, const Vector<SQLValue>& arguments, int permissions);
- PassRefPtr<SQLResultSet> execute(DatabaseSync*, ExceptionState&);
+ PassRefPtrWillBeRawPtr<SQLResultSet> execute(DatabaseSync*, ExceptionState&);
private:
String m_statement;