| Index: chrome/browser/component_updater/default_component_installer.cc
 | 
| diff --git a/chrome/browser/component_updater/default_component_installer.cc b/chrome/browser/component_updater/default_component_installer.cc
 | 
| index d1b699b638334c282c01f0b6f654ed7249906115..fb4787114558f009c1c1431703e057584fb67864 100644
 | 
| --- a/chrome/browser/component_updater/default_component_installer.cc
 | 
| +++ b/chrome/browser/component_updater/default_component_installer.cc
 | 
| @@ -112,7 +112,7 @@ void DefaultComponentInstaller::StartRegistration(
 | 
|      ComponentUpdateService* cus) {
 | 
|    base::FilePath base_dir = installer_traits_->GetBaseDirectory();
 | 
|    if (!base::PathExists(base_dir) &&
 | 
| -      !file_util::CreateDirectory(base_dir)) {
 | 
| +      !base::CreateDirectory(base_dir)) {
 | 
|      NOTREACHED() << "Could not create the base directory for "
 | 
|                   << installer_traits_->GetName() << " ("
 | 
|                   << base_dir.MaybeAsASCII() << ").";
 | 
| 
 |