| Index: content/browser/quota/quota_manager_unittest.cc | 
| diff --git a/content/browser/quota/quota_manager_unittest.cc b/content/browser/quota/quota_manager_unittest.cc | 
| index 685b2d6be93333f1a1a43396d8653d9705eb56af..0080f611bfed840596f88d04f40cd9305a4e323a 100644 | 
| --- a/content/browser/quota/quota_manager_unittest.cc | 
| +++ b/content/browser/quota/quota_manager_unittest.cc | 
| @@ -123,7 +123,7 @@ class QuotaManagerTest : public testing::Test { | 
|  | 
| protected: | 
| void ResetQuotaManager(bool is_incognito) { | 
| -    quota_manager_ = new QuotaManager(is_incognito, data_dir_.path(), | 
| +    quota_manager_ = new QuotaManager(is_incognito, data_dir_.GetPath(), | 
| base::ThreadTaskRunnerHandle::Get().get(), | 
| base::ThreadTaskRunnerHandle::Get().get(), | 
| mock_special_storage_policy_.get()); | 
| @@ -453,7 +453,7 @@ class QuotaManagerTest : public testing::Test { | 
| const OriginInfoTableEntries& origin_info_entries() const { | 
| return origin_info_entries_; | 
| } | 
| -  base::FilePath profile_path() const { return data_dir_.path(); } | 
| +  base::FilePath profile_path() const { return data_dir_.GetPath(); } | 
| int status_callback_count() const { return status_callback_count_; } | 
| void reset_status_callback_count() { status_callback_count_ = 0; } | 
|  | 
|  |