Index: chrome/browser/component_updater/component_patcher_operation.cc |
diff --git a/chrome/browser/component_updater/component_patcher_operation.cc b/chrome/browser/component_updater/component_patcher_operation.cc |
index ba849189f817b3489a04a15b61cd3f0315ec3075..3f5f46a61354476cc3787cfd3c6d590709643d9f 100644 |
--- a/chrome/browser/component_updater/component_patcher_operation.cc |
+++ b/chrome/browser/component_updater/component_patcher_operation.cc |
@@ -72,7 +72,7 @@ ComponentUnpacker::Error DeltaUpdateOp::Run(base::DictionaryValue* command_args, |
return parse_result; |
const base::FilePath parent = output_abs_path_.DirName(); |
- if (!file_util::DirectoryExists(parent)) { |
+ if (!base::DirectoryExists(parent)) { |
if (!file_util::CreateDirectory(parent)) |
return ComponentUnpacker::kIoError; |
} |