| 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 ead435a97007c6967929f32845a3316d3ca9f613..88daa5d3304c7150b1751b93286faccbc5ea2c02 100644
|
| --- a/chrome/browser/net/sqlite_server_bound_cert_store.cc
|
| +++ b/chrome/browser/net/sqlite_server_bound_cert_store.cc
|
| @@ -193,7 +193,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 (!base::PathExists(dir) && !file_util::CreateDirectory(dir))
|
| + if (!base::PathExists(dir) && !base::CreateDirectory(dir))
|
| return;
|
|
|
| int64 db_size = 0;
|
|
|