| Index: content/browser/indexed_db/indexed_db_backing_store.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_backing_store.cc b/content/browser/indexed_db/indexed_db_backing_store.cc
|
| index ffd99e276e4a608c0ab69eadc7d3e87170e5b1d0..be909b4f0b1cc63883835744faddd4ae1053ed10 100644
|
| --- a/content/browser/indexed_db/indexed_db_backing_store.cc
|
| +++ b/content/browser/indexed_db/indexed_db_backing_store.cc
|
| @@ -484,7 +484,7 @@ static void HistogramOpenStatus(IndexedDBBackingStoreOpenResult result,
|
| }
|
|
|
| static bool IsPathTooLong(const base::FilePath& leveldb_dir) {
|
| - int limit = file_util::GetMaximumPathComponentLength(leveldb_dir.DirName());
|
| + int limit = base::GetMaximumPathComponentLength(leveldb_dir.DirName());
|
| if (limit == -1) {
|
| DLOG(WARNING) << "GetMaximumPathComponentLength returned -1";
|
| // In limited testing, ChromeOS returns 143, other OSes 255.
|
|
|