Searched defs:notifier_id (Results 26 - 28 of 28) sorted by last modified time

12

/external/chromium_org/chrome/browser/ui/ash/multi_user/
H A Dmulti_user_notification_blocker_chromeos_unittest.cc105 const message_center::NotifierId& notifier_id,
107 message_center::NotifierId id_with_profile = notifier_id;
113 const message_center::NotifierId& notifier_id,
115 message_center::NotifierId id_with_profile = notifier_id;
138 message_center::NotifierId notifier_id(
148 EXPECT_FALSE(ShouldShowNotificationAsPopup(notifier_id, ""));
151 EXPECT_TRUE(ShouldShowNotificationAsPopup(notifier_id, GetDefaultUserId()));
152 EXPECT_FALSE(ShouldShowNotification(notifier_id, ""));
155 EXPECT_TRUE(ShouldShowNotification(notifier_id, GetDefaultUserId()));
161 EXPECT_FALSE(ShouldShowNotificationAsPopup(notifier_id, ""));
104 ShouldShowNotificationAsPopup( const message_center::NotifierId& notifier_id, const std::string profile_id) argument
112 ShouldShowNotification( const message_center::NotifierId& notifier_id, const std::string profile_id) argument
[all...]
/external/chromium_org/chrome/browser/apps/
H A Dephemeral_app_browsertest.cc76 bool IsNotifierInList(const message_center::NotifierId& notifier_id, argument
81 if (notifier->notifier_id == notifier_id)
705 message_center::NotifierId notifier_id(
707 EXPECT_TRUE(notification_service->IsNotifierEnabled(notifier_id));
708 notification_service->SetNotifierEnabled(notifier_id, false);
709 EXPECT_FALSE(notification_service->IsNotifierEnabled(notifier_id));
734 message_center::NotifierId notifier_id(
743 EXPECT_TRUE(IsNotifierInList(notifier_id, notifiers));
752 EXPECT_FALSE(IsNotifierInList(notifier_id, notifier
[all...]
/external/chromium_org/ash/system/
H A Dsystem_notifier.cc47 bool MatchSystemNotifierId(const message_center::NotifierId& notifier_id, argument
49 if (notifier_id.type != message_center::NotifierId::SYSTEM_COMPONENT)
53 if (notifier_id.id == id_list[i])
77 bool ShouldAlwaysShowPopups(const message_center::NotifierId& notifier_id) { argument
78 return MatchSystemNotifierId(notifier_id, kAlwaysShownNotifierIds);
81 bool IsAshSystemNotifier(const message_center::NotifierId& notifier_id) { argument
82 return MatchSystemNotifierId(notifier_id, kAshSystemNotifiers);

Completed in 164 milliseconds

12