Index: chrome/browser/ui/network_profile_bubble.cc |
diff --git a/chrome/browser/ui/network_profile_bubble.cc b/chrome/browser/ui/network_profile_bubble.cc |
index 6de46c3b05810a7b81453bcfa635267303123671..491a9e7d44f7d6adea2285256aafac044fdc3045 100644 |
--- a/chrome/browser/ui/network_profile_bubble.cc |
+++ b/chrome/browser/ui/network_profile_bubble.cc |
@@ -127,7 +127,7 @@ void NetworkProfileBubble::CheckNetworkProfile( |
base::FilePath temp_file; |
// Try to create some non-empty temp file in the profile dir and use |
// it to check if there is a reparse-point free path to it. |
- if (file_util::CreateTemporaryFileInDir(profile_folder, &temp_file) && |
+ if (base::CreateTemporaryFileInDir(profile_folder, &temp_file) && |
(file_util::WriteFile(temp_file, ".", 1) == 1)) { |
base::FilePath normalized_temp_file; |
if (!file_util::NormalizeFilePath(temp_file, &normalized_temp_file)) |