| Index: components/nacl/browser/pnacl_host_unittest.cc
|
| diff --git a/components/nacl/browser/pnacl_host_unittest.cc b/components/nacl/browser/pnacl_host_unittest.cc
|
| index 37cdadbd85887d7323b5f5a4e600ad563d6a3a3a..90780bdc35e6af3d330f6d7cfb1e907118d2a046 100644
|
| --- a/components/nacl/browser/pnacl_host_unittest.cc
|
| +++ b/components/nacl/browser/pnacl_host_unittest.cc
|
| @@ -43,7 +43,7 @@ class PnaclHostTest : public testing::Test {
|
| void SetUp() override {
|
| host_ = PnaclHost::GetInstance();
|
| ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
|
| - host_->InitForTest(temp_dir_.path(), true);
|
| + host_->InitForTest(temp_dir_.GetPath(), true);
|
| base::RunLoop().RunUntilIdle();
|
| EXPECT_EQ(PnaclHost::CacheReady, host_->cache_state_);
|
| }
|
| @@ -59,7 +59,7 @@ class PnaclHostTest : public testing::Test {
|
| return host_->cache_state_ == PnaclHost::CacheReady;
|
| }
|
| void ReInitBackend() {
|
| - host_->InitForTest(temp_dir_.path(), true);
|
| + host_->InitForTest(temp_dir_.GetPath(), true);
|
| base::RunLoop().RunUntilIdle();
|
| EXPECT_EQ(PnaclHost::CacheReady, host_->cache_state_);
|
| }
|
| @@ -442,7 +442,7 @@ class PnaclHostTestDisk : public PnaclHostTest {
|
| void SetUp() override {
|
| host_ = PnaclHost::GetInstance();
|
| ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
|
| - host_->InitForTest(temp_dir_.path(), false);
|
| + host_->InitForTest(temp_dir_.GetPath(), false);
|
| EXPECT_EQ(PnaclHost::CacheInitializing, host_->cache_state_);
|
| }
|
| void DeInit() {
|
|
|