Index: chrome/browser/extensions/webstore_installer.cc |
diff --git a/chrome/browser/extensions/webstore_installer.cc b/chrome/browser/extensions/webstore_installer.cc |
index 75e0839592e03dd75e6fa01c3bd3a671d0091afe..a2e98d9467df35ae94dcd427cac195bf3c13751b 100644 |
--- a/chrome/browser/extensions/webstore_installer.cc |
+++ b/chrome/browser/extensions/webstore_installer.cc |
@@ -109,7 +109,7 @@ void GetDownloadFilePath( |
// Ensure the download directory exists. TODO(asargent) - make this use |
// common code from the downloads system. |
if (!base::DirectoryExists(directory)) { |
- if (!file_util::CreateDirectory(directory)) { |
+ if (!base::CreateDirectory(directory)) { |
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, |
base::Bind(callback, base::FilePath())); |
return; |