summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-19 01:59:48 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-19 01:59:48 +0000
commit7894ae2ad4702e20bdfcea0bc5ba12adad1a02cd (patch)
treebb0d537436cd455f552eb95e8982c891c36e35ef /webkit
parent87f59d48a8c90999ce33ba414435fae0e32e2f0c (diff)
downloadchromium_src-7894ae2ad4702e20bdfcea0bc5ba12adad1a02cd.zip
chromium_src-7894ae2ad4702e20bdfcea0bc5ba12adad1a02cd.tar.gz
chromium_src-7894ae2ad4702e20bdfcea0bc5ba12adad1a02cd.tar.bz2
Remove incorrect usages of USE_SYSTEM_SQLITE.
Currently we don't provide any support to the system sqlite. BUG=None TEST=trybots Signed-off-by: Thiago Farina <tfarina@chromium.org> Review URL: http://codereview.chromium.org/3049001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52879 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/database/vfs_backend.cc7
-rw-r--r--webkit/tools/test_shell/simple_database_system.cc7
2 files changed, 2 insertions, 12 deletions
diff --git a/webkit/database/vfs_backend.cc b/webkit/database/vfs_backend.cc
index 94cec80..b828039 100644
--- a/webkit/database/vfs_backend.cc
+++ b/webkit/database/vfs_backend.cc
@@ -4,15 +4,10 @@
#include "webkit/database/vfs_backend.h"
-#if defined(USE_SYSTEM_SQLITE)
-#include <sqlite3.h>
-#else
-#include "third_party/sqlite/preprocessed/sqlite3.h"
-#endif
-
#include "base/file_path.h"
#include "base/file_util.h"
#include "base/logging.h"
+#include "third_party/sqlite/preprocessed/sqlite3.h"
namespace webkit_database {
diff --git a/webkit/tools/test_shell/simple_database_system.cc b/webkit/tools/test_shell/simple_database_system.cc
index dd0326c..16e280f 100644
--- a/webkit/tools/test_shell/simple_database_system.cc
+++ b/webkit/tools/test_shell/simple_database_system.cc
@@ -4,15 +4,10 @@
#include "webkit/tools/test_shell/simple_database_system.h"
-#if defined(USE_SYSTEM_SQLITE)
-#include <sqlite3.h>
-#else
-#include "third_party/sqlite/preprocessed/sqlite3.h"
-#endif
-
#include "base/auto_reset.h"
#include "base/file_util.h"
#include "base/message_loop.h"
+#include "third_party/sqlite/preprocessed/sqlite3.h"
#include "third_party/WebKit/WebKit/chromium/public/WebDatabase.h"
#include "third_party/WebKit/WebKit/chromium/public/WebString.h"
#include "webkit/database/database_util.h"