Searched defs:notification (Results 1 - 25 of 138) sorted by relevance

123456

/external/chromium_org/third_party/ocmock/OCMock/
H A DOCMNotificationPoster.h10 NSNotification *notification; variable
/external/junit/src/org/junit/runner/notification/
H A Dpackage-info.java6 package org.junit.runner.notification
H A DStoppedByUserException.java1 package org.junit.runner.notification;
7 * @see org.junit.runner.notification.RunNotifier
H A DFailure.java1 package org.junit.runner.notification;
H A DRunListener.java1 package org.junit.runner.notification;
/external/chromium_org/jingle/notifier/listener/
H A Dnotification_defines_unittest.cc16 // Create a notification with binary data in the data field.
21 Notification notification; local
22 notification.data = kNonUtf8Data;
23 EXPECT_EQ("{ channel: \"\", data: \"\\u00FF\" }", notification.ToString());
H A Dpush_notifications_send_update_task_unittest.cc34 Notification notification; local
35 notification.channel = "test_channel";
36 notification.data = "test_data";
39 base::Base64Encode(notification.data, &base64_data);
43 notification, to_jid_bare_));
53 to_jid_bare_.Str().c_str(), notification.channel.c_str(),
H A Dfake_push_client_observer.cc24 const Notification& notification) {
25 last_incoming_notification_ = notification;
23 OnIncomingNotification( const Notification& notification) argument
H A Dnon_blocking_push_client_unittest.cc94 Notification notification; local
95 notification.channel = "channel";
96 notification.recipients.resize(10);
97 notification.recipients[0].to = "to";
98 notification.recipients[9].user_specific_data = "user_specific_data";
99 notification.data = "data";
100 return notification;
105 const Notification notification = MakeTestNotification(); local
107 push_client_->SendNotification(notification);
112 fake_push_client_->sent_notifications()[0].Equals(notification));
141 const Notification notification = MakeTestNotification(); local
[all...]
H A Dpush_notifications_send_update_task.cc23 buzz::XmppTaskParentInterface* parent, const Notification& notification)
24 : XmppTask(parent), notification_(notification) {}
32 DVLOG(1) << "Sending notification " << notification_.ToString()
41 const Notification& notification,
62 push->AddAttr(kQnChannel, notification.channel);
65 const RecipientList& recipients = notification.recipients;
81 base::Base64Encode(notification.data, &base64_data);
22 PushNotificationsSendUpdateTask( buzz::XmppTaskParentInterface* parent, const Notification& notification) argument
40 MakeUpdateMessage( const Notification& notification, const buzz::Jid& to_jid_bare) argument
H A Dpush_notifications_listen_task.cc47 // the notification to the buzz server.
66 Notification notification; local
67 notification.channel = push_element->Attr(kQnChannel);
71 if (!base::Base64Decode(base64_encoded_data, &notification.data)) {
78 DVLOG(1) << "Received notification " << notification.ToString();
79 delegate_->OnNotificationReceived(notification);
/external/guava/guava/src/com/google/common/cache/
H A DRemovalListener.java22 * An object that can receive a notification when an entry is removed from a cache. The removal
23 * resulting in notification could have occured to an entry being manually removed or replaced, or
45 void onRemoval(RemovalNotification<K, V> notification); argument
/external/chromium_org/chrome/browser/ui/cocoa/apps/
H A Dquit_with_apps_controller_mac_interactive_uitest.cc52 // Test that quitting while apps are open shows a notification instead.
56 const Notification* notification; local
62 notification = g_browser_process->notification_ui_manager()->FindById(
64 EXPECT_EQ(NULL, notification);
75 // On the first quit, show notification.
78 notification = g_browser_process->notification_ui_manager()->FindById(
80 ASSERT_TRUE(notification);
82 // If notification was dismissed by click, show again on next quit.
83 notification->delegate()->Click();
87 notification
[all...]
/external/chromium_org/chrome/browser/ui/panels/
H A Dtest_panel_notification_observer.cc13 int notification,
17 registrar_.Add(this, notification, source);
12 TestPanelNotificationObserver( int notification, const content::NotificationSource& source) argument
/external/chromium_org/ash/system/chromeos/managed/
H A Dtray_locally_managed_user_unittest.cc12 #include "ui/message_center/notification.h"
72 message_center::Notification* notification = GetPopup(); local
73 ASSERT_NE(static_cast<message_center::Notification*>(NULL), notification); local
75 notification->rich_notification_data().priority);
80 // the notification and should not cause crashes.
81 message_center::Notification* notification = GetPopup(); local
82 ASSERT_NE(static_cast<message_center::Notification*>(NULL), notification); local
84 notification->rich_notification_data().priority);
/external/lldb/source/Core/
H A DInputReaderEZ.cpp18 lldb::InputReaderAction notification,
28 switch (notification)
16 Callback_Impl(void *baton, InputReader &reader, lldb::InputReaderAction notification, const char *bytes, size_t bytes_len) argument
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowNotificationManager.java21 public void notify(int id, Notification notification) argument
23 notify(null, id, notification);
27 public void notify(String tag, int id, Notification notification) { argument
31 notifications.put(id, notification);
/external/chromium_org/ash/system/chromeos/session/
H A Dtray_session_length_limit_unittest.cc14 #include "ui/message_center/notification.h"
82 message_center::Notification* notification = GetNotification(); local
83 EXPECT_TRUE(notification);
84 EXPECT_EQ(message_center::SYSTEM_PRIORITY, notification->priority());
85 base::string16 first_content = notification->message();
87 EXPECT_TRUE(notification->rich_notification_data().
92 notification = GetNotification();
93 EXPECT_TRUE(notification);
94 EXPECT_EQ(message_center::SYSTEM_PRIORITY, notification->priority());
96 EXPECT_NE(first_content, notification
125 message_center::Notification* notification; local
[all...]
/external/chromium_org/chrome/browser/notifications/
H A Dgoogle_now_notification_stats_collector.cc11 #include "chrome/browser/notifications/notification.h"
14 #include "ui/message_center/notification.h"
54 const Notification* const notification = local
56 if (notification) {
58 ((notification->notifier_id().type ==
60 (notification->notifier_id().id == kChromeNowExtensionID));
H A Dnotification.cc5 #include "chrome/browser/notifications/notification.h"
86 Notification::Notification(const Notification& notification) argument
87 : message_center::Notification(notification),
88 origin_url_(notification.origin_url()),
89 icon_url_(notification.icon_url()),
90 content_url_(notification.content_url()),
91 button_one_icon_url_(notification.button_one_icon_url()),
92 button_two_icon_url_(notification.button_two_icon_url()),
93 image_url_(notification.image_url()),
94 replace_id_(notification
99 operator =(const Notification& notification) argument
[all...]
H A Dnotification_test_util.h11 #include "chrome/browser/notifications/notification.h"
19 // the notification events are not important.
42 // notification events needs to be verified.
55 Logger::log("notification displayed\n");
58 Logger::log("notification error\n");
61 Logger::log("notification clicked\n");
64 Logger::log("notification button clicked\n");
68 Logger::log("notification closed by user\n");
70 Logger::log("notification closed by script\n");
90 // Adds a notification t
121 const Notification& notification() const { return notification_; } function in class:StubNotificationUIManager
[all...]
H A Dnotification_ui_manager_android.cc20 void NotificationUIManagerAndroid::Add(const Notification& notification, argument
26 bool NotificationUIManagerAndroid::Update(const Notification& notification, argument
/external/chromium_org/chrome/browser/notifications/sync_notifier/
H A Dchrome_notifier_delegate.cc48 SyncedNotification* notification = local
50 if (notification) {
51 GURL destination = notification->GetButtonUrl(button_index);
91 SyncedNotification* notification = local
93 if (notification == NULL)
96 return notification->GetDefaultDestinationUrl();
/external/chromium_org/content/renderer/
H A Dactive_notification_tracker.cc22 const WebNotification& notification, int& id) {
23 ReverseTable::iterator iter = reverse_notification_table_.find(notification);
31 int id, WebNotification* notification) {
36 *notification = *lookup;
46 WebNotification* notification = new WebNotification(proxy); local
47 int id = notification_table_.Add(notification);
54 // We want to free the notification after removing it from the table.
55 scoped_ptr<WebNotification> notification(notification_table_.Lookup(id));
57 DCHECK(notification.get());
58 if (notification)
21 GetId( const WebNotification& notification, int& id) argument
30 GetNotification( int id, WebNotification* notification) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebNotification.cpp117 WebNotification::WebNotification(Notification* notification) argument
118 : m_private(notification)
122 WebNotification& WebNotification::operator=(Notification* notification) argument
124 m_private = notification;

Completed in 541 milliseconds

123456