Index: third_party/WebKit/Source/modules/webdatabase/Database.h |
diff --git a/third_party/WebKit/Source/modules/webdatabase/Database.h b/third_party/WebKit/Source/modules/webdatabase/Database.h |
index d973a7369aee267ed145bf297ea1162bc8dc031a..d76bc19ebe79162516c156176c9e1fdd25b1321e 100644 |
--- a/third_party/WebKit/Source/modules/webdatabase/Database.h |
+++ b/third_party/WebKit/Source/modules/webdatabase/Database.h |
@@ -81,7 +81,7 @@ public: |
SQLTransactionErrorCallback*, |
VoidCallback* successCallback); |
- bool opened() const { return m_opened; } |
+ bool opened(); |
bool isNew() const { return m_new; } |
SecurityOrigin* securityOrigin() const; |
@@ -161,7 +161,7 @@ private: |
String m_filename; |
DatabaseGuid m_guid; |
- bool m_opened; |
+ int m_opened; |
bool m_new; |
SQLiteDatabase m_sqliteDatabase; |