HomeSort by relevance Sort by last modified time
    Searched refs:Notifier (Results 1 - 25 of 36) sorted by null

1 2

  /external/qemu/
notify.h 2 * Notifier lists
19 typedef struct Notifier Notifier;
21 struct Notifier
23 void (*notify)(Notifier *notifier);
24 QTAILQ_ENTRY(Notifier) node;
29 QTAILQ_HEAD(, Notifier) notifiers;
37 void notifier_list_add(NotifierList *list, Notifier *notifier);
    [all...]
notify.c 2 * Notifier lists
22 void notifier_list_add(NotifierList *list, Notifier *notifier)
24 QTAILQ_INSERT_HEAD(&list->notifiers, notifier, node);
27 void notifier_list_remove(NotifierList *list, Notifier *notifier)
29 QTAILQ_REMOVE(&list->notifiers, notifier, node);
34 Notifier *notifier, *next; local
36 QTAILQ_FOREACH_SAFE(notifier, &list->notifiers, node, next)
    [all...]
  /external/chromium_org/ui/message_center/
fake_notifier_settings_provider.h 17 FakeNotifierSettingsProvider(const std::vector<Notifier*>& notifiers);
28 virtual void GetNotifierList(std::vector<Notifier*>* notifiers) OVERRIDE;
30 virtual void SetNotifierEnabled(const Notifier& notifier,
37 bool WasEnabled(const Notifier& notifier);
40 void AddGroup(NotifierGroup* group, const std::vector<Notifier*>& notifiers);
45 std::vector<Notifier*> notifiers;
51 std::map<const Notifier*, bool> enabled_;
notifier_settings.h 54 // The identifier of the app notifier. Empty if it's not APPLICATION or
61 // The type of system component notifier.
67 struct MESSAGE_CENTER_EXPORT Notifier {
68 Notifier(const NotifierId& notifier_id, const string16& name, bool enabled);
69 ~Notifier();
73 // The human-readable name of the notifier such like the extension name.
80 // The icon image of the notifier. The extension icon or favicon.
84 DISALLOW_COPY_AND_ASSIGN(Notifier);
94 // Icon of a notifier group.
97 // Display name of a notifier group
    [all...]
notifier_settings.cc 42 Notifier::Notifier(const NotifierId& notifier_id,
50 Notifier::~Notifier() {
fake_notifier_settings_provider.cc 22 const std::vector<Notifier*>& notifiers)
64 std::vector<Notifier*>* notifiers) {
70 void FakeNotifierSettingsProvider::SetNotifierEnabled(const Notifier& notifier,
72 enabled_[&notifier] = enabled;
87 bool FakeNotifierSettingsProvider::WasEnabled(const Notifier& notifier) {
88 return enabled_[&notifier];
92 NotifierGroup* group, const std::vector<Notifier*>& notifiers) {
  /external/chromium_org/net/cert/
cert_database_mac.cc 24 class CertDatabase::Notifier {
26 // Creates a new Notifier that will forward Keychain events to |cert_db|.
29 Notifier(CertDatabase* cert_db, base::MessageLoop* message_loop)
37 base::Bind(&Notifier::Init,
43 ~Notifier() {
47 SecKeychainRemoveCallback(&Notifier::KeychainCallback);
64 OSStatus status = SecKeychainAddCallback(&Notifier::KeychainCallback,
83 OSStatus CertDatabase::Notifier::KeychainCallback(
87 Notifier* that = reinterpret_cast<Notifier*>(context)
    [all...]
cert_database.h 95 class Notifier;
96 friend class Notifier;
97 scoped_ptr<Notifier> notifier_;
cert_database_nss.cc 24 class CertDatabase::Notifier : public NSSCertDatabase::Observer {
26 explicit Notifier(CertDatabase* cert_db) : cert_db_(cert_db) {
30 virtual ~Notifier() {
50 DISALLOW_COPY_AND_ASSIGN(Notifier);
57 notifier_.reset(new Notifier(this));
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
mediastreamtrack.h 34 #include "talk/app/webrtc/notifier.h"
41 class MediaStreamTrack : public Notifier<T> {
54 Notifier<T>::FireOnChanged();
62 Notifier<T>::FireOnChanged();
localaudiosource.h 32 #include "talk/app/webrtc/notifier.h"
43 class LocalAudioSource : public Notifier<AudioSourceInterface> {
notifier.h 38 // Implement a template version of a notifier.
40 class Notifier : public T {
42 Notifier() {
localvideosource.h 32 #include "talk/app/webrtc/notifier.h"
56 class LocalVideoSource : public Notifier<VideoSourceInterface>,
mediastream.h 37 #include "talk/app/webrtc/notifier.h"
41 class MediaStream : public Notifier<MediaStreamInterface> {
  /external/chromium_org/third_party/libjingle/source/talk/examples/plus/testutil/
libjingleplus_unittest.cc 41 LibjinglePlus *libjingleplus = new LibjinglePlus(new Notifier);
libjingleplus_main.cc 85 // Create a LibjinglePlus object and give it the notifier interface
86 LibjinglePlus ljp(new Notifier);
libjingleplus_test_notifier.h 33 class Notifier : virtual public LibjinglePlusNotify {
  /external/chromium_org/chrome/browser/notifications/
message_center_settings_controller.h 58 std::vector<message_center::Notifier*>* notifiers) OVERRIDE;
59 virtual void SetNotifierEnabled(const message_center::Notifier& notifier,
78 // The views displaying notifier settings.
88 // The list of all configurable notifier groups. This is each profile that is
message_center_settings_controller.cc 42 using message_center::Notifier;
79 bool operator() (Notifier* n1, Notifier* n2) {
88 bool SimpleCompareNotifiers(Notifier* n1, Notifier* n2) {
162 std::vector<Notifier*>* notifiers) {
201 notifiers->push_back(new Notifier(
208 if (notifier::ChromeNotifierServiceFactory::UseSyncedNotifications(
210 notifier::ChromeNotifierService* sync_notifier_service =
211 notifier::ChromeNotifierServiceFactory::GetInstance()->GetForProfile
    [all...]
  /external/chromium_org/chrome/browser/notifications/sync_notifier/
chrome_notifier_service.h 21 struct Notifier;
24 namespace notifier { namespace
60 virtual notifier::SyncedNotification* FindNotificationById(
66 std::vector<message_center::Notifier*>* notifiers);
80 void AddForTest(scoped_ptr<notifier::SyncedNotification> notification);
92 void Add(scoped_ptr<notifier::SyncedNotification> notification);
95 void UpdateInMessageCenter(notifier::SyncedNotification* notification);
98 void Display(notifier::SyncedNotification* notification);
112 ScopedVector<notifier::SyncedNotification> notification_data_;
119 } // namespace notifier
    [all...]
chrome_notifier_service.cc 35 namespace notifier { namespace
322 std::vector<message_center::Notifier*>* notifiers) {
336 message_center::Notifier* notifier_service = new message_center::Notifier(
392 scoped_ptr<notifier::SyncedNotification> notification) {
399 if (!notifier::ChromeNotifierServiceFactory::UseSyncedNotifications(
452 } // namespace notifier
  /external/chromium_org/content/browser/devtools/
devtools_protocol.h 23 typedef base::Callback<void(const std::string& message)> Notifier;
132 void SetNotifier(const Notifier& notifier);
151 Notifier notifier_;
  /external/chromium_org/ui/message_center/cocoa/
settings_controller.h 61 std::vector<message_center::Notifier*> notifiers_;
  /external/chromium_org/ui/message_center/views/
notifier_settings_view.h 27 // A class to show the list of notifier extensions / URL patterns and allow
53 void UpdateContentsView(const std::vector<Notifier*>& notifiers);
notifier_settings_view.cc 214 // If there's no provider, assume only one notifier group - the active one.
249 NotifierButton(Notifier* notifier, views::ButtonListener* listener)
251 notifier_(notifier),
254 DCHECK(notifier);
292 const Notifier& notifier() const { function in class:message_center::NotifierSettingsView::NotifierButton
312 scoped_ptr<Notifier> notifier_;
355 std::vector<Notifier*> notifiers;
376 if ((*iter)->notifier().notifier_id == notifier_id)
    [all...]

Completed in 211 milliseconds

1 2