Chromium Code Reviews| Index: chrome/browser/chromeos/contacts/contact_manager.h |
| diff --git a/chrome/browser/chromeos/contacts/contact_manager.h b/chrome/browser/chromeos/contacts/contact_manager.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b7796a25ca471cdd9c82861cb89d37222ed1ae44 |
| --- /dev/null |
| +++ b/chrome/browser/chromeos/contacts/contact_manager.h |
| @@ -0,0 +1,108 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_CHROMEOS_CONTACTS_CONTACT_MANAGER_H_ |
| +#define CHROME_BROWSER_CHROMEOS_CONTACTS_CONTACT_MANAGER_H_ |
| + |
| +#include <map> |
| +#include <vector> |
| + |
| +#include "base/basictypes.h" |
| +#include "base/compiler_specific.h" |
| +#include "base/memory/scoped_ptr.h" |
| +#include "base/observer_list.h" |
| +#include "base/stl_util.h" |
| +#include "chrome/browser/chromeos/contacts/contact_store_observer.h" |
| +#include "content/public/browser/notification_observer.h" |
| +#include "content/public/browser/notification_registrar.h" |
| + |
| +class Profile; |
| + |
| +namespace contacts { |
| + |
| +class Contact; |
| +typedef std::vector<const Contact*> ContactPointers; |
| + |
| +class ContactManagerObserver; |
| +class ContactStore; |
| +class ContactStoreFactory; |
| + |
| +// Singleton class that exposes contacts to rest of the browser. |
| +class ContactManager : public ContactStoreObserver, |
| + public content::NotificationObserver { |
| + public: |
| + static ContactManager* GetInstance(); |
| + |
| + ContactManager(); |
| + ~ContactManager(); |
| + |
| + // Swaps in a new factory to use for creating ContactStores. |
| + // Must be called before any stores have been created. |
| + void set_contact_store_factory_for_testing( |
|
satorux1
2012/08/03 21:16:22
maybe SetContactStore... because the function is n
Daniel Erat
2012/08/03 22:12:07
Done.
|
| + scoped_ptr<ContactStoreFactory> factory); |
| + |
| + void Init(); |
| + |
| + // Adds or removes an observer for changes to |profile|'s contacts. |
| + void AddObserver(ContactManagerObserver* observer, Profile* profile); |
| + void RemoveObserver(ContactManagerObserver* observer, Profile* profile); |
| + |
| + // Returns pointers to all currently-loaded contacts for |profile|. The |
| + // returned Contact objects may not persist indefinitely; the caller must not |
| + // refer to them again after unblocking the UI thread. |
| + scoped_ptr<ContactPointers> GetAllContacts(Profile* profile); |
| + |
| + // Returns the contact identified by |provider_id|. |
| + // NULL is returned if the contact doesn't exist. |
| + const Contact* GetContactByProviderId(Profile* profile, |
| + const std::string& provider_id); |
| + |
| + // ContactStoreObserver overrides: |
| + virtual void OnContactsUpdated(ContactStore* store) OVERRIDE; |
| + |
| + // content::NotificationObserver overrides: |
| + virtual void Observe(int type, |
| + const content::NotificationSource& source, |
| + const content::NotificationDetails& details) OVERRIDE; |
| + |
| + private: |
| + typedef ObserverList<ContactManagerObserver> Observers; |
| + typedef std::map<Profile*, ContactStore*> ContactStoreMap; |
| + typedef std::map<Profile*, Observers*> ProfileObserversMap; |
| + |
| + // Returns the list of observers interested in |profile|. If not present, |
| + // creates a new list if |create| is true and returns NULL otherwise. |
| + Observers* GetObserversForProfile(Profile* profile, bool create); |
| + |
| + // Handles profile creation and destruction. |
| + void HandleProfileCreated(Profile* profile); |
| + void HandleProfileDestroyed(Profile* profile); |
| + |
| + // Singleton instance. |
| + static ContactManager* instance_; |
|
satorux1
2012/08/03 21:16:22
matter of taste of the day: you might want to put
Daniel Erat
2012/08/03 22:12:07
Done.
|
| + |
| + content::NotificationRegistrar registrar_; |
| + |
| + // Maps from a profile to observers that are interested in changes to that |
| + // profile's contacts. |
| + ProfileObserversMap profile_observers_; |
| + |
| + // Deletes values in |profile_observers_|. |
| + STLValueDeleter<ProfileObserversMap> profile_observers_deleter_; |
| + |
| + // Creates objects for |contact_stores_|. |
| + scoped_ptr<ContactStoreFactory> contact_store_factory_; |
| + |
| + // Maps from a profile to a store for getting the profile's contacts. |
| + ContactStoreMap contact_stores_; |
| + |
| + // Deletes values in |contact_stores_|. |
| + STLValueDeleter<ContactStoreMap> contact_stores_deleter_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(ContactManager); |
| +}; |
| + |
| +} // namespace contacts |
| + |
| +#endif // CHROME_BROWSER_CHROMEOS_CONTACTS_CONTACT_MANAGER_H_ |