blob: 78246f5362f230c208aca9aa52b3476cdb28d1dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/message_center/notifier_settings.h"
namespace message_center {
#if !defined(TOOLKIT_VIEWS)
NotifierSettingsDelegate* ShowSettings(NotifierSettingsProvider* provider,
gfx::NativeView context) {
NOTIMPLEMENTED();
return NULL;
}
#endif
Notifier::Notifier(const std::string& id,
const string16& name,
bool enabled)
: id(id),
name(name),
enabled(enabled),
type(APPLICATION) {
}
Notifier::Notifier(const GURL& url, const string16& name, bool enabled)
: url(url),
name(name),
enabled(enabled),
type(WEB_PAGE) {
}
Notifier::~Notifier() {
}
} // namespace message_center
|