Index: chrome/browser/importer/importer_list.h |
diff --git a/chrome/browser/importer/importer_list.h b/chrome/browser/importer/importer_list.h |
index b8330241f2dc591064010830cc578539c987d479..ace14f81c5c52605756a4165cbc3229b1fde95c2 100644 |
--- a/chrome/browser/importer/importer_list.h |
+++ b/chrome/browser/importer/importer_list.h |
@@ -51,6 +51,9 @@ class ImporterList : public base::RefCountedThreadSafe<ImporterList> { |
const importer::SourceProfile& GetSourceProfileForImporterType( |
int importer_type) const; |
+ // Tells interested callers if class is done loading profiles. |
+ bool AreProfilesLoaded() const { return source_profiles_loaded_; } |
Evan Stade
2012/03/13 23:17:14
name of this fn should be source_profiles_loaded()
Dan Beam
2012/03/13 23:32:33
Done.
|
+ |
private: |
friend class base::RefCountedThreadSafe<ImporterList>; |