| Index: chrome/browser/importer/importer_list.cc | 
| diff --git a/chrome/browser/importer/importer_list.cc b/chrome/browser/importer/importer_list.cc | 
| index e38cc5e482a67373c72f7f0a77e88932a0af4056..10e1101dcf355bb697c50a7b460a7d21cb959b6e 100644 | 
| --- a/chrome/browser/importer/importer_list.cc | 
| +++ b/chrome/browser/importer/importer_list.cc | 
| @@ -98,7 +98,8 @@ void DetectFirefoxProfiles(std::vector<importer::ProfileInfo*>* profiles) { | 
| profiles->push_back(firefox); | 
| } | 
|  | 
| -void DetectGoogleToolbarProfiles(std::vector<importer::ProfileInfo*>* profiles) { | 
| +void DetectGoogleToolbarProfiles( | 
| +    std::vector<importer::ProfileInfo*>* profiles) { | 
| if (FirstRun::IsChromeFirstRun()) | 
| return; | 
|  | 
| @@ -196,6 +197,10 @@ const importer::ProfileInfo& ImporterList::GetSourceProfileInfoForBrowserType( | 
| return *(new importer::ProfileInfo()); | 
| } | 
|  | 
| +bool ImporterList::source_profiles_loaded() const { | 
| +  return source_profiles_loaded_; | 
| +} | 
| + | 
| void ImporterList::DetectSourceProfilesWorker() { | 
| // TODO(jhawkins): Remove this condition once DetectSourceProfileHack is | 
| // removed. |observer_| is NULL when said method is called. | 
|  |