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

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/
LifecycleContext.h 44 typedef LifecycleNotifier<T> Notifier;
61 Notifier& lifecycleNotifier();
64 PassOwnPtr<Notifier> createLifecycleNotifier();
66 OwnPtr<Notifier> m_lifecycleNotifier;
84 inline typename LifecycleContext<T>::Notifier& LifecycleContext<T>::lifecycleNotifier()
92 inline PassOwnPtr<typename LifecycleContext<T>::Notifier> LifecycleContext<T>::createLifecycleNotifier()
94 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 57 // The identifier of the app notifier. Empty if it's WEB_PAGE.
79 // The default constructor which doesn't specify the notifier. Used for tests.
85 struct MESSAGE_CENTER_EXPORT Notifier {
86 Notifier(const NotifierId& notifier_id,
89 ~Notifier();
93 // The human-readable name of the notifier such like the extension name.
100 // The icon image of the notifier. The extension icon or favicon.
104 DISALLOW_COPY_AND_ASSIGN(Notifier);
114 // Icon of a notifier group.
117 // 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 112 class Notifier;
113 friend class Notifier;
114 scoped_ptr<Notifier> notifier_;
  /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/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;
notifier_settings_view.cc 245 // If there's no provider, assume only one notifier group - the active one.
280 Notifier* notifier,
284 notifier_(notifier),
290 DCHECK(notifier);
367 const Notifier& NotifierSettingsView::NotifierButton::notifier() const { function in class:message_center::NotifierSettingsView::NotifierButton
499 std::vector<Notifier*> notifiers;
521 if ((*iter)->notifier().notifier_id == notifier_id) {
529 std::vector<Notifier*> notifiers
    [all...]
  /external/chromium_org/chrome/browser/notifications/
message_center_settings_controller.cc 51 using message_center::Notifier;
104 bool operator() (Notifier* n1, Notifier* n2) {
113 bool SimpleCompareNotifiers(Notifier* n1, Notifier* n2) {
200 std::vector<Notifier*>* notifiers) {
236 notifiers->push_back(new Notifier(
264 notifiers->push_back(new Notifier(
286 Notifier* const screenshot_notifier = new Notifier(
    [all...]
message_center_settings_controller.h 71 std::vector<message_center::Notifier*>* notifiers) OVERRIDE;
72 virtual void SetNotifierEnabled(const message_center::Notifier& notifier,
101 // Sets up the notifier group for the guest session. This needs to be
110 // The views displaying notifier settings.
120 // The list of all configurable notifier groups. This is each profile that is
message_center_notifications_unittest.cc 123 std::vector<Notifier*> notifiers_;
  /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/extensions/api/notifications/
notifications_apitest.cc 204 message_center::Notifier notifier(notifier_id, base::string16(), true);
206 SetNotifierEnabled(notifier, false);
233 message_center::Notifier notifier(notifier_id, base::string16(), true);
235 SetNotifierEnabled(notifier, false);
247 message_center::Notifier notifier(notifier_id, base::string16(), false);
249 SetNotifierEnabled(notifier, true);
  /external/chromium_org/chrome/browser/extensions/api/notification_provider/
notification_provider_api.cc 276 api::notification_provider::Notifier notifier; local
279 api::notification_provider::GetNotifier::Results::Create(notifier)));
292 std::vector<linked_ptr<api::notification_provider::Notifier> > notifiers;

Completed in 523 milliseconds

1 2