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

1 2

  /external/qemu/include/qemu/
notify.h 2 * Notifier lists
19 typedef struct Notifier Notifier;
21 struct Notifier
23 void (*notify)(Notifier *notifier, void *data);
24 QLIST_ENTRY(Notifier) node;
29 QLIST_HEAD(, Notifier) notifiers;
37 void notifier_list_add(NotifierList *list, Notifier *notifier);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
LifecycleContext.h 42 typedef LifecycleNotifier<T> Notifier;
57 Notifier& lifecycleNotifier();
60 PassOwnPtr<Notifier> createLifecycleNotifier();
62 OwnPtr<Notifier> m_lifecycleNotifier;
80 inline typename LifecycleContext<T>::Notifier& LifecycleContext<T>::lifecycleNotifier()
88 inline PassOwnPtr<typename LifecycleContext<T>::Notifier> LifecycleContext<T>::createLifecycleNotifier()
90 return LifecycleContext<T>::Notifier::create(static_cast<T*>(this));
  /external/chromium_org/ui/message_center/
fake_notifier_settings_provider.h 19 const std::vector<Notifier*>& notifiers);
28 virtual void GetNotifierList(std::vector<Notifier*>* notifiers) OVERRIDE;
30 virtual void SetNotifierEnabled(const Notifier& notifier,
42 bool WasEnabled(const Notifier& notifier);
45 void AddGroup(NotifierGroup* group, const std::vector<Notifier*>& notifiers);
47 // For testing, this method can be used to specify a notifier that has a learn
55 std::vector<Notifier*> notifiers;
61 std::map<const Notifier*, bool> enabled_
    [all...]
notifier_settings.cc 53 Notifier::Notifier(const NotifierId& notifier_id,
61 Notifier::~Notifier() {
notifier_settings.h 58 // The identifier of the app notifier. Empty if it's WEB_PAGE.
80 // The default constructor which doesn't specify the notifier. Used for tests.
86 struct MESSAGE_CENTER_EXPORT Notifier {
87 Notifier(const NotifierId& notifier_id,
90 ~Notifier();
94 // The human-readable name of the notifier such like the extension name.
101 // The icon image of the notifier. The extension icon or favicon.
105 DISALLOW_COPY_AND_ASSIGN(Notifier);
115 // Icon of a notifier group.
118 // Display name of a notifier group
    [all...]
fake_notifier_settings_provider.cc 24 const std::vector<Notifier*>& notifiers)
67 std::vector<Notifier*>* notifiers) {
73 void FakeNotifierSettingsProvider::SetNotifierEnabled(const Notifier& notifier,
75 enabled_[&notifier] = enabled;
103 bool FakeNotifierSettingsProvider::WasEnabled(const Notifier& notifier) {
104 return enabled_[&notifier];
108 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 116 class Notifier;
117 friend class Notifier;
118 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) {}
28 virtual ~Notifier() {}
46 DISALLOW_COPY_AND_ASSIGN(Notifier);
51 notifier_(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();
notifier.h 38 // Implement a template version of a notifier.
40 class Notifier : public T {
42 Notifier() {
localaudiosource.h 32 #include "talk/app/webrtc/notifier.h"
44 class LocalAudioSource : public Notifier<AudioSourceInterface> {
remoteaudiosource.h 34 #include "talk/app/webrtc/notifier.h"
41 class RemoteAudioSource : public Notifier<AudioSourceInterface> {
mediastream.h 37 #include "talk/app/webrtc/notifier.h"
41 class MediaStream : public Notifier<MediaStreamInterface> {
videosource.h 32 #include "talk/app/webrtc/notifier.h"
57 class VideoSource : public Notifier<VideoSourceInterface>,
  /external/chromium_org/ui/message_center/cocoa/
settings_entry_view.h 25 message_center::Notifier* notifier_;
27 // The image that will be displayed next to the notifier name, loaded
31 // The button that can be displayed after the notifier name, that when
35 // The button that contains the label, notifier icon and checkbox.
44 notifier:(message_center::Notifier*)notifier
settings_controller.h 64 std::vector<message_center::Notifier*> notifiers_;
72 // notifier; i.e. we should show the "Learn More" button.
76 - (void)setSettingsNotifier:(message_center::Notifier*)notifier
80 - (void)learnMoreClicked:(message_center::Notifier*)notifier;
  /external/qemu/util/
notify.c 2 * Notifier lists
24 void notifier_list_add(NotifierList *list, Notifier *notifier)
26 QLIST_INSERT_HEAD(&list->notifiers, notifier, node);
29 void notifier_remove(Notifier *notifier)
31 QLIST_REMOVE(notifier, node);
36 Notifier *notifier, *next; local
38 QLIST_FOREACH_SAFE(notifier, &list->notifiers, node, next)
61 NotifierWithReturn *notifier, *next; local
    [all...]
  /external/chromium_org/ui/message_center/views/
notifier_settings_view.h 29 // A class to show the list of notifier extensions / URL patterns and allow
60 Notifier* notifier,
68 const Notifier& notifier() const;
84 const scoped_ptr<Notifier> notifier_;
96 void UpdateContentsView(const std::vector<Notifier*>& notifiers);
notifier_settings_view_unittest.cc 14 Notifier* NewNotifier(const std::string& id,
18 return new Notifier(notifier_id, base::UTF8ToUTF16(title), enabled);
26 TestingNotifierSettingsProvider(const std::vector<Notifier*>& notifiers,
83 std::vector<Notifier*> notifiers;
  /external/chromium_org/chrome/browser/notifications/
message_center_settings_controller.h 71 std::vector<message_center::Notifier*>* notifiers) OVERRIDE;
72 virtual void SetNotifierEnabled(const message_center::Notifier& notifier,
100 // Sets up the notifier group for the guest session. This needs to be
109 // The views displaying notifier settings.
119 // The list of all configurable notifier groups. This is each profile that is
message_center_settings_controller.cc 52 using message_center::Notifier;
105 bool operator() (Notifier* n1, Notifier* n2) {
114 bool SimpleCompareNotifiers(Notifier* n1, Notifier* n2) {
201 std::vector<Notifier*>* notifiers) {
244 notifiers->push_back(new Notifier(
251 if (notifier::ChromeNotifierServiceFactory::UseSyncedNotifications(
253 notifier::ChromeNotifierService* sync_notifier_service =
254 notifier::ChromeNotifierServiceFactory::GetInstance()->GetForProfile
    [all...]
  /external/chromium_org/content/browser/devtools/
devtools_protocol.h 24 typedef base::Callback<void(const std::string& message)> Notifier;
136 void SetNotifier(const Notifier& notifier);
157 Notifier notifier_;
  /external/lldb/include/lldb/Core/
ModuleList.h 32 class Notifier
46 ~Notifier ()
68 ModuleList (ModuleList::Notifier* notifier);
550 Notifier* m_notifier;
  /external/chromium_org/chrome/browser/notifications/sync_notifier/
chrome_notifier_service.h 35 struct Notifier;
38 namespace notifier { namespace
98 virtual notifier::SyncedNotification* FindNotificationById(
104 std::vector<message_center::Notifier*>* notifiers);
129 void AddForTest(scoped_ptr<notifier::SyncedNotification> notification);
154 void Add(scoped_ptr<notifier::SyncedNotification> notification);
157 void UpdateInMessageCenter(notifier::SyncedNotification* notification);
160 void Display(notifier::SyncedNotification* notification);
194 notifier::SyncedNotificationAppInfo* FindAppInfoByAppId(
247 } // namespace notifier
    [all...]

Completed in 571 milliseconds

1 2