| Index: components/nacl/browser/pnacl_host.cc
|
| diff --git a/components/nacl/browser/pnacl_host.cc b/components/nacl/browser/pnacl_host.cc
|
| index 2ed4d5d4aa0b02acbc734c8b87e8d6c24102e9d1..6344b3b2319e33b35fff69185390cc132bb9138b 100644
|
| --- a/components/nacl/browser/pnacl_host.cc
|
| +++ b/components/nacl/browser/pnacl_host.cc
|
| @@ -136,8 +136,8 @@ void PnaclHost::DoCreateTemporaryFile(base::FilePath temp_dir,
|
| base::FilePath file_path;
|
| base::PlatformFile file_handle(base::kInvalidPlatformFileValue);
|
| bool rv = temp_dir.empty()
|
| - ? file_util::CreateTemporaryFile(&file_path)
|
| - : file_util::CreateTemporaryFileInDir(temp_dir, &file_path);
|
| + ? base::CreateTemporaryFile(&file_path)
|
| + : base::CreateTemporaryFileInDir(temp_dir, &file_path);
|
| if (!rv) {
|
| PLOG(ERROR) << "Temp file creation failed.";
|
| } else {
|
|
|