summaryrefslogtreecommitdiffstats
path: root/chrome/browser/webdata
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/webdata')
-rw-r--r--chrome/browser/webdata/web_database.cc2
-rw-r--r--chrome/browser/webdata/web_database.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/chrome/browser/webdata/web_database.cc b/chrome/browser/webdata/web_database.cc
index a704173..a4db1c9 100644
--- a/chrome/browser/webdata/web_database.cc
+++ b/chrome/browser/webdata/web_database.cc
@@ -147,7 +147,7 @@ bool WebDatabase::Init(const FilePath& db_name) {
// database while we're running, and this will give somewhat improved perf.
db_.set_exclusive_locking();
- if (!db_.Init(db_name))
+ if (!db_.Open(db_name))
return false;
// Initialize various tables
diff --git a/chrome/browser/webdata/web_database.h b/chrome/browser/webdata/web_database.h
index b966938..acc8fbf 100644
--- a/chrome/browser/webdata/web_database.h
+++ b/chrome/browser/webdata/web_database.h
@@ -11,9 +11,7 @@
#include "app/sql/connection.h"
#include "app/sql/meta_table.h"
#include "base/basictypes.h"
-#include "chrome/browser/meta_table_helper.h"
#include "chrome/browser/search_engines/template_url.h"
-#include "chrome/common/sqlite_utils.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "testing/gtest/include/gtest/gtest_prod.h"
#include "webkit/glue/autofill_form.h"