HomeSort by relevance Sort by last modified time
    Searched refs:ContactStore (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/chrome/browser/chromeos/contacts/
contact_store_observer.h 12 class ContactStore;
14 // Interface for observing changes to a ContactStore.
20 // Called when the contacts stored within a ContactStore are updated.
21 virtual void OnContactsUpdated(ContactStore* store) = 0;
contact_store.h 22 class ContactStore {
24 ContactStore() {}
25 virtual ~ContactStore() {}
42 DISALLOW_COPY_AND_ASSIGN(ContactStore);
45 // Interface for factories that return ContactStore objects of a given type.
51 // Does |profile| support this type of ContactStore?
54 // Creates and returns a new, uninitialized ContactStore for |profile|.
57 // ContactStore implementations that need additional information beyond the
59 virtual ContactStore* CreateContactStore(Profile* profile) = 0;
contact_manager.h 29 class ContactStore;
88 virtual void OnContactsUpdated(ContactStore* store) OVERRIDE;
97 typedef std::map<Profile*, ContactStore*> ContactStoreMap;
fake_contact_store.h 27 // A "fake" in-memory implementation of ContactStore used for testing.
28 class FakeContactStore : public ContactStore {
40 // ContactStore implementation:
85 virtual ContactStore* CreateContactStore(Profile* profile) OVERRIDE;
google_contact_store.h 40 : public ContactStore,
84 // ContactStore implementation:
195 virtual ContactStore* CreateContactStore(Profile* profile) OVERRIDE;
fake_contact_store.cc 102 ContactStore* FakeContactStoreFactory::CreateContactStore(Profile* profile) {
contact_manager.cc 126 void ContactManager::OnContactsUpdated(ContactStore* store) {
190 ContactStore* store = contact_store_factory_->CreateContactStore(profile);
google_contact_store.cc 420 ContactStore* GoogleContactStoreFactory::CreateContactStore(Profile* profile) {
google_contact_store_unittest.cc 40 virtual void OnContactsUpdated(ContactStore* store) OVERRIDE {

Completed in 84 milliseconds