Commit 50988ba3 authored by tfarina@chromium.org's avatar tfarina@chromium.org

Header Cleanup2: Remove another include of sqlite_utils.h that is not needed.

BUG=None
TEST=trybots
Signed-off-by: default avatarThiago Farina <tfarina@chromium.org>

Review URL: http://codereview.chromium.org/2843062

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52837 0039d316-1c4b-4281-b951-d872f2087c98
parent eb5cc925
......@@ -15,15 +15,16 @@
#include "base/logging.h"
#include "base/time.h"
#include "base/utf_string_conversions.h"
#include "chrome/common/sqlite_utils.h"
using webkit_glue::PasswordForm;
static const int kCurrentVersionNumber = 1;
static const int kCompatibleVersionNumber = 1;
namespace {
// Convenience enum for interacting with SQL queries that use all the columns.
typedef enum {
enum LoginTableColumns {
COLUMN_ORIGIN_URL = 0,
COLUMN_ACTION_URL,
COLUMN_USERNAME_ELEMENT,
......@@ -37,7 +38,9 @@ typedef enum {
COLUMN_DATE_CREATED,
COLUMN_BLACKLISTED_BY_USER,
COLUMN_SCHEME
} LoginTableColumns;
};
} // namespace
LoginDatabase::LoginDatabase() {
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment