| Index: components/offline_pages/archive_manager_unittest.cc
|
| diff --git a/components/offline_pages/archive_manager_unittest.cc b/components/offline_pages/archive_manager_unittest.cc
|
| index 5b5e59efd67aa1b2a02b34ecf97a193e4fe408fb..bc50b4f4175fb0bd8c5aacb3c30a78dd60e62dc5 100644
|
| --- a/components/offline_pages/archive_manager_unittest.cc
|
| +++ b/components/offline_pages/archive_manager_unittest.cc
|
| @@ -45,7 +45,7 @@ class ArchiveManagerTest : public testing::Test {
|
| const ArchiveManager::StorageStats& storage_sizes);
|
|
|
| ArchiveManager* manager() { return manager_.get(); }
|
| - const base::FilePath& temp_path() const { return temp_dir_.path(); }
|
| + const base::FilePath& temp_path() const { return temp_dir_.GetPath(); }
|
| CallbackStatus callback_status() const { return callback_status_; }
|
| const std::set<base::FilePath>& last_archive_paths() const {
|
| return last_archvie_paths_;
|
| @@ -73,7 +73,7 @@ ArchiveManagerTest::ArchiveManagerTest()
|
|
|
| void ArchiveManagerTest::SetUp() {
|
| ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
|
| - ResetManager(temp_dir_.path());
|
| + ResetManager(temp_dir_.GetPath());
|
| }
|
|
|
| void ArchiveManagerTest::PumpLoop() {
|
|
|