diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-19 01:59:48 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-19 01:59:48 +0000 |
commit | 7894ae2ad4702e20bdfcea0bc5ba12adad1a02cd (patch) | |
tree | bb0d537436cd455f552eb95e8982c891c36e35ef /chrome/common/sqlite_compiled_statement.cc | |
parent | 87f59d48a8c90999ce33ba414435fae0e32e2f0c (diff) | |
download | chromium_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 'chrome/common/sqlite_compiled_statement.cc')
-rw-r--r-- | chrome/common/sqlite_compiled_statement.cc | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/chrome/common/sqlite_compiled_statement.cc b/chrome/common/sqlite_compiled_statement.cc index 93b0d67..f54182a 100644 --- a/chrome/common/sqlite_compiled_statement.cc +++ b/chrome/common/sqlite_compiled_statement.cc @@ -1,18 +1,13 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/common/sqlite_compiled_statement.h" -#if defined(USE_SYSTEM_SQLITE) -#include <sqlite3.h> -#else -#include "third_party/sqlite/preprocessed/sqlite3.h" -#endif - #include "base/logging.h" #include "base/stl_util-inl.h" #include "chrome/common/sqlite_utils.h" +#include "third_party/sqlite/preprocessed/sqlite3.h" // SqliteStatementCache ------------------------------------------------------- |