| Index: chrome/browser/net/sqlite_server_bound_cert_store.cc
|
| diff --git a/chrome/browser/net/sqlite_server_bound_cert_store.cc b/chrome/browser/net/sqlite_server_bound_cert_store.cc
|
| index 865d911d28da38042d5bb69fce91b7482fc3246c..843226756299398754bc51ae703ab3aa41b6792b 100644
|
| --- a/chrome/browser/net/sqlite_server_bound_cert_store.cc
|
| +++ b/chrome/browser/net/sqlite_server_bound_cert_store.cc
|
| @@ -200,7 +200,7 @@ void SQLiteServerBoundCertStore::Backend::LoadOnDBThread(
|
| // Ensure the parent directory for storing certs is created before reading
|
| // from it.
|
| const base::FilePath dir = path_.DirName();
|
| - if (!file_util::PathExists(dir) && !file_util::CreateDirectory(dir))
|
| + if (!base::PathExists(dir) && !file_util::CreateDirectory(dir))
|
| return;
|
|
|
| int64 db_size = 0;
|
|
|