| Index: chrome/browser/extensions/component_loader.cc | 
| =================================================================== | 
| --- chrome/browser/extensions/component_loader.cc	(revision 164413) | 
| +++ chrome/browser/extensions/component_loader.cc	(working copy) | 
| @@ -411,16 +411,10 @@ | 
| int type, | 
| const content::NotificationSource& source, | 
| const content::NotificationDetails& details) { | 
| -  if (type == chrome::NOTIFICATION_PREF_CHANGED) { | 
| -    const std::string* name = | 
| -        content::Details<const std::string>(details).ptr(); | 
| -    if (*name == prefs::kEnterpriseWebStoreURL) | 
| -      AddOrReloadEnterpriseWebStore(); | 
| -    else | 
| -      NOTREACHED(); | 
| -  } else { | 
| -    NOTREACHED(); | 
| -  } | 
| +  DCHECK_EQ(type, chrome::NOTIFICATION_PREF_CHANGED); | 
| +  DCHECK_EQ(*content::Details<const std::string>(details).ptr(), | 
| +            std::string(prefs::kEnterpriseWebStoreURL)); | 
| +  AddOrReloadEnterpriseWebStore(); | 
| } | 
|  | 
| // static | 
|  |