Index: content/browser/tracing/tracing_controller_impl.cc |
diff --git a/content/browser/tracing/tracing_controller_impl.cc b/content/browser/tracing/tracing_controller_impl.cc |
index 06018663d6cdafffc861e8ce84fe62612f195580..24a53e315707f742d79b1c1fc64af480a06af0a6 100644 |
--- a/content/browser/tracing/tracing_controller_impl.cc |
+++ b/content/browser/tracing/tracing_controller_impl.cc |
@@ -67,7 +67,7 @@ TracingControllerImpl::ResultFile::ResultFile(const base::FilePath& path) |
void TracingControllerImpl::ResultFile::OpenTask() { |
if (path_.empty()) |
- file_util::CreateTemporaryFile(&path_); |
+ base::CreateTemporaryFile(&path_); |
file_ = file_util::OpenFile(path_, "w"); |
if (!file_) { |
LOG(ERROR) << "Failed to open " << path_.value(); |