Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1597)

Unified Diff: Source/modules/webdatabase/Database.h

Issue 561143002: Web SQL: Remove unnecessary abstraction. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/modules/webdatabase/Database.h
diff --git a/Source/modules/webdatabase/Database.h b/Source/modules/webdatabase/Database.h
index d7c6853e7e24e12e19c4e7a39c3c45305a5b205d..0df0f642919e312cf6f367f643e97556e7224066 100644
--- a/Source/modules/webdatabase/Database.h
+++ b/Source/modules/webdatabase/Database.h
@@ -31,7 +31,6 @@
#include "bindings/core/v8/ScriptWrappable.h"
#include "modules/webdatabase/DatabaseBackend.h"
-#include "modules/webdatabase/DatabaseBase.h"
#include "modules/webdatabase/DatabaseBasicTypes.h"
#include "modules/webdatabase/DatabaseError.h"
#include "wtf/text/WTFString.h"
@@ -48,7 +47,7 @@ class SQLTransactionCallback;
class SQLTransactionErrorCallback;
class VoidCallback;
-class Database FINAL : public DatabaseBackend, public DatabaseBase, public ScriptWrappable {
+class Database FINAL : public DatabaseBackend, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
virtual ~Database();

Powered by Google App Engine
This is Rietveld 408576698