Index: chrome/browser/chromeos/contacts/google_contact_store.cc |
diff --git a/chrome/browser/chromeos/contacts/google_contact_store.cc b/chrome/browser/chromeos/contacts/google_contact_store.cc |
index e1a99810ad47bff7c7442f2a27e9c01a6fe62e77..7e2eb92f1189c0ed8a22c334dce5a7f5efb54163 100644 |
--- a/chrome/browser/chromeos/contacts/google_contact_store.cc |
+++ b/chrome/browser/chromeos/contacts/google_contact_store.cc |
@@ -350,4 +350,14 @@ void GoogleContactStore::OnDatabaseContactsSaved(bool success) { |
ScheduleUpdate(true); |
} |
+GoogleContactStoreFactory::GoogleContactStoreFactory() { |
+} |
+ |
+GoogleContactStoreFactory::~GoogleContactStoreFactory() { |
+} |
+ |
+ContactStore* GoogleContactStoreFactory::CreateContactStore(Profile* profile) { |
+ return new GoogleContactStore(profile); |
+} |
+ |
} // namespace contacts |