| Index: chrome/browser/extensions/updater/local_extension_cache_unittest.cc
|
| diff --git a/chrome/browser/extensions/updater/local_extension_cache_unittest.cc b/chrome/browser/extensions/updater/local_extension_cache_unittest.cc
|
| index 1ef40a4b77bef938fa2307d1302386729d4cafb5..9147ec2f438ee16c0137e1bc296d7502649f3c2c 100644
|
| --- a/chrome/browser/extensions/updater/local_extension_cache_unittest.cc
|
| +++ b/chrome/browser/extensions/updater/local_extension_cache_unittest.cc
|
| @@ -55,13 +55,13 @@ class LocalExtensionCacheTest : public testing::Test {
|
| base::FilePath CreateCacheDir(bool initialized) {
|
| EXPECT_TRUE(cache_dir_.CreateUniqueTempDir());
|
| if (initialized)
|
| - CreateFlagFile(cache_dir_.path());
|
| - return cache_dir_.path();
|
| + CreateFlagFile(cache_dir_.GetPath());
|
| + return cache_dir_.GetPath();
|
| }
|
|
|
| base::FilePath CreateTempDir() {
|
| EXPECT_TRUE(temp_dir_.CreateUniqueTempDir());
|
| - return temp_dir_.path();
|
| + return temp_dir_.GetPath();
|
| }
|
|
|
| void CreateFlagFile(const base::FilePath& dir) {
|
| @@ -389,7 +389,7 @@ TEST_F(LocalExtensionCacheTest, PutExtensionCases) {
|
| // Create and initialize installation source directory.
|
| base::ScopedTempDir temp_dir;
|
| EXPECT_TRUE(temp_dir.CreateUniqueTempDir());
|
| - const base::FilePath temp_path = temp_dir.path();
|
| + const base::FilePath temp_path = temp_dir.GetPath();
|
| std::string version;
|
|
|
| // Right now we have two files for the first extension
|
|
|