| Index: chrome/installer/util/install_util.cc
 | 
| diff --git a/chrome/installer/util/install_util.cc b/chrome/installer/util/install_util.cc
 | 
| index a3861b82448025d8b52a500112d08b0751376be0..f7dccea263c8bc2f0c43b040dd191b70324d294e 100644
 | 
| --- a/chrome/installer/util/install_util.cc
 | 
| +++ b/chrome/installer/util/install_util.cc
 | 
| @@ -379,7 +379,7 @@ bool InstallUtil::IsPerUserInstall(const base::FilePath& exe_path) {
 | 
|      NOTREACHED();
 | 
|      return true;
 | 
|    }
 | 
| -  return !StartsWith(exe_path.value(), program_files_path.value(), false);
 | 
| +  return !base::StartsWith(exe_path.value(), program_files_path.value(), false);
 | 
|  }
 | 
|  
 | 
|  bool InstallUtil::IsMultiInstall(BrowserDistribution* dist,
 | 
| 
 |