| Index: chrome/test/chromedriver/util.cc
|
| diff --git a/chrome/test/chromedriver/util.cc b/chrome/test/chromedriver/util.cc
|
| index 8c59bfea8ff0104a46ef777b928b54b2534cd1b5..ebb69afb8d06fa79db8a9fb2e958d2a724b840d8 100644
|
| --- a/chrome/test/chromedriver/util.cc
|
| +++ b/chrome/test/chromedriver/util.cc
|
| @@ -96,7 +96,7 @@ Status UnzipArchive(const base::FilePath& unzip_dir,
|
| if (!dir.CreateUniqueTempDir())
|
| return Status(kUnknownError, "unable to create temp dir");
|
|
|
| - base::FilePath archive = dir.path().AppendASCII("temp.zip");
|
| + base::FilePath archive = dir.GetPath().AppendASCII("temp.zip");
|
| int length = bytes.length();
|
| if (base::WriteFile(archive, bytes.c_str(), length) != length)
|
| return Status(kUnknownError, "could not write file to temp dir");
|
|
|