OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NotificationBlocker
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/ui/message_center/
notification_blocker.cc
11
NotificationBlocker
::
NotificationBlocker
(MessageCenter* message_center)
17
NotificationBlocker
::~
NotificationBlocker
() {
22
void
NotificationBlocker
::AddObserver(
NotificationBlocker
::Observer* observer) {
26
void
NotificationBlocker
::RemoveObserver(
27
NotificationBlocker
::Observer* observer) {
31
bool
NotificationBlocker
::ShouldShowNotification(
36
void
NotificationBlocker
::NotifyBlockingStateChanged()
[
all
...]
notification_blocker.h
15
//
NotificationBlocker
manages the availability of notifications based on the
16
// current system status. Each
NotificationBlocker
implementation covers a
18
class MESSAGE_CENTER_EXPORT
NotificationBlocker
{
22
virtual void OnBlockingStateChanged(
NotificationBlocker
* blocker) = 0;
25
explicit
NotificationBlocker
(MessageCenter* message_center);
26
virtual ~
NotificationBlocker
();
54
typedef std::vector<
NotificationBlocker
*> NotificationBlockers;
/external/chromium_org/ash/first_run/
desktop_cleaner.cc
77
class
NotificationBlocker
: public message_center::
NotificationBlocker
{
79
NotificationBlocker
()
80
: message_center::
NotificationBlocker
(
85
virtual ~
NotificationBlocker
() {};
88
// Overriden from message_center::
NotificationBlocker
.
94
DISALLOW_COPY_AND_ASSIGN(
NotificationBlocker
);
105
notification_blocker_.reset(new
NotificationBlocker
());
Completed in 49 milliseconds