blob: 447d0bfe1bec287152e3625e351056d2b7293a7f (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
// Copyright (c) 2012 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.
#ifndef CHROME_BROWSER_EXTENSIONS_API_NOTIFICATIONS_NOTIFICATIONS_API_H_
#define CHROME_BROWSER_EXTENSIONS_API_NOTIFICATIONS_NOTIFICATIONS_API_H_
#include <string>
#include "base/memory/ref_counted.h"
#include "chrome/browser/extensions/api/api_function.h"
#include "chrome/browser/extensions/extension_function.h"
#include "chrome/common/extensions/api/notifications.h"
#include "ui/message_center/notification_types.h"
namespace extensions {
class NotificationsApiFunction : public ApiFunction {
public:
// Whether the current extension and channel allow the API. Public for
// testing.
bool IsNotificationsApiAvailable();
protected:
NotificationsApiFunction();
virtual ~NotificationsApiFunction();
void CreateNotification(
const std::string& id,
api::notifications::NotificationOptions* options);
bool IsNotificationsApiEnabled();
// Called inside of RunImpl.
virtual bool RunNotificationsApi() = 0;
// UITHreadExtensionFunction:
virtual bool RunImpl() OVERRIDE;
message_center::NotificationType MapApiTemplateTypeToType(
api::notifications::TemplateType type);
};
class NotificationsCreateFunction : public NotificationsApiFunction {
public:
NotificationsCreateFunction();
// UIThreadExtensionFunction:
virtual bool RunNotificationsApi() OVERRIDE;
protected:
virtual ~NotificationsCreateFunction();
private:
scoped_ptr<api::notifications::Create::Params> params_;
DECLARE_EXTENSION_FUNCTION("notifications.create", NOTIFICATIONS_CREATE)
};
class NotificationsUpdateFunction : public NotificationsApiFunction {
public:
NotificationsUpdateFunction();
// UIThreadExtensionFunction:
virtual bool RunNotificationsApi() OVERRIDE;
protected:
virtual ~NotificationsUpdateFunction();
private:
scoped_ptr<api::notifications::Update::Params> params_;
DECLARE_EXTENSION_FUNCTION("notifications.update", NOTIFICATIONS_UPDATE)
};
class NotificationsClearFunction : public NotificationsApiFunction {
public:
NotificationsClearFunction();
// UIThreadExtensionFunction:
virtual bool RunNotificationsApi() OVERRIDE;
protected:
virtual ~NotificationsClearFunction();
private:
scoped_ptr<api::notifications::Clear::Params> params_;
DECLARE_EXTENSION_FUNCTION("notifications.clear", NOTIFICATIONS_CLEAR)
};
class NotificationsGetAllFunction : public NotificationsApiFunction {
public:
NotificationsGetAllFunction();
// UIThreadExtensionFunction:
virtual bool RunNotificationsApi() OVERRIDE;
protected:
virtual ~NotificationsGetAllFunction();
private:
DECLARE_EXTENSION_FUNCTION("notifications.getAll", NOTIFICATIONS_GET_ALL)
};
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_API_NOTIFICATIONS_NOTIFICATIONS_API_H_
|