Index: sql/connection.cc |
diff --git a/sql/connection.cc b/sql/connection.cc |
index 2a971e58326aadc5deac8eb0730f347992066e24..8bfa61457e0330cd1b239132a7ed9c96738f39af 100644 |
--- a/sql/connection.cc |
+++ b/sql/connection.cc |
@@ -402,9 +402,9 @@ bool Connection::Delete(const base::FilePath& path) { |
base::Delete(wal_path, false); |
base::Delete(path, false); |
- return !file_util::PathExists(journal_path) && |
- !file_util::PathExists(wal_path) && |
- !file_util::PathExists(path); |
+ return !base::PathExists(journal_path) && |
+ !base::PathExists(wal_path) && |
+ !base::PathExists(path); |
} |
bool Connection::BeginTransaction() { |