OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetNotificationById
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/ui/message_center/
notification_list.h
127
Notification*
GetNotificationById
(const std::string& id);
notification_list.cc
272
Notification* NotificationList::
GetNotificationById
(const std::string& id) {
notification_list_unittest.cc
139
EXPECT_TRUE(notification_list()->
GetNotificationById
(id0));
140
EXPECT_TRUE(notification_list()->
GetNotificationById
(id1));
141
EXPECT_FALSE(notification_list()->
GetNotificationById
(id1 + "foo"));
message_center_impl.cc
547
return notification_list_->
GetNotificationById
(id);
576
bool already_exists = (notification_list_->
GetNotificationById
(id) != NULL);
Completed in 931 milliseconds