summaryrefslogtreecommitdiffstats
path: root/courgette
diff options
context:
space:
mode:
Diffstat (limited to 'courgette')
-rw-r--r--courgette/memory_allocator.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/courgette/memory_allocator.cc b/courgette/memory_allocator.cc
index b3b8cf4..f089163 100644
--- a/courgette/memory_allocator.cc
+++ b/courgette/memory_allocator.cc
@@ -32,7 +32,7 @@ void TempFile::Close() {
bool TempFile::Create() {
DCHECK(file_ == base::kInvalidPlatformFileValue);
base::FilePath path;
- if (!file_util::CreateTemporaryFile(&path))
+ if (!base::CreateTemporaryFile(&path))
return false;
bool created = false;