Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Unified Diff: sql/connection.cc

Issue 18286004: Move PathExists to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/url_request/url_fetcher_impl_unittest.cc ('k') | sql/connection_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() {
« no previous file with comments | « net/url_request/url_fetcher_impl_unittest.cc ('k') | sql/connection_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698