| Index: chrome/browser/component_updater/pnacl_component_installer.cc | 
| diff --git a/chrome/browser/component_updater/pnacl_component_installer.cc b/chrome/browser/component_updater/pnacl_component_installer.cc | 
| index 93b2611340aed7989c46ff4d87528f4661a3ed95..1b4ca592e62b678d6422abec35ff5a62a29eec03 100644 | 
| --- a/chrome/browser/component_updater/pnacl_component_installer.cc | 
| +++ b/chrome/browser/component_updater/pnacl_component_installer.cc | 
| @@ -272,7 +272,7 @@ bool PnaclComponentInstaller::Install(const base::DictionaryValue& manifest, | 
| // |installed_file| actually exists. | 
| bool PnaclComponentInstaller::GetInstalledFile(const std::string& file, | 
| base::FilePath* installed_file) { | 
| -  if (current_version().Equals(Version(kNullVersion))) | 
| +  if (current_version() == Version(kNullVersion)) | 
| return false; | 
|  | 
| *installed_file = GetPnaclBaseDirectory() | 
| @@ -339,7 +339,7 @@ void StartPnaclUpdateRegistration( | 
| !CheckPnaclComponentManifest(*manifest, | 
| *pnacl_manifest, | 
| &manifest_version) || | 
| -        !current_version.Equals(manifest_version)) { | 
| +        current_version != manifest_version) { | 
| current_version = Version(kNullVersion); | 
| } else { | 
| OverrideDirPnaclComponent(path); | 
|  |