Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Side by Side Diff: chrome/browser/extensions/api/notifications/notifications_api.h

Issue 177003015: Pull AsyncApiFunction out of src/chrome (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase for storage_api Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_EXTENSIONS_API_NOTIFICATIONS_NOTIFICATIONS_API_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_NOTIFICATIONS_NOTIFICATIONS_API_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_NOTIFICATIONS_NOTIFICATIONS_API_H_ 6 #define CHROME_BROWSER_EXTENSIONS_API_NOTIFICATIONS_NOTIFICATIONS_API_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "chrome/browser/extensions/api/api_function.h" 11 #include "chrome/browser/extensions/chrome_extension_function.h"
12 #include "chrome/common/extensions/api/notifications.h" 12 #include "chrome/common/extensions/api/notifications.h"
13 #include "extensions/browser/extension_function.h" 13 #include "extensions/browser/extension_function.h"
14 #include "ui/message_center/notification_types.h" 14 #include "ui/message_center/notification_types.h"
15 15
16 class Notification; 16 class Notification;
17 17
18 namespace extensions { 18 namespace extensions {
19 19
20 class NotificationsApiFunction : public ApiFunction { 20 class NotificationsApiFunction : public ChromeAsyncExtensionFunction {
21 public: 21 public:
22 // Whether the current extension and channel allow the API. Public for 22 // Whether the current extension and channel allow the API. Public for
23 // testing. 23 // testing.
24 bool IsNotificationsApiAvailable(); 24 bool IsNotificationsApiAvailable();
25 25
26 protected: 26 protected:
27 NotificationsApiFunction(); 27 NotificationsApiFunction();
28 virtual ~NotificationsApiFunction(); 28 virtual ~NotificationsApiFunction();
29 29
30 bool CreateNotification(const std::string& id, 30 bool CreateNotification(const std::string& id,
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 virtual ~NotificationsGetPermissionLevelFunction(); 126 virtual ~NotificationsGetPermissionLevelFunction();
127 127
128 private: 128 private:
129 DECLARE_EXTENSION_FUNCTION("notifications.getPermissionLevel", 129 DECLARE_EXTENSION_FUNCTION("notifications.getPermissionLevel",
130 NOTIFICATIONS_GET_ALL) 130 NOTIFICATIONS_GET_ALL)
131 }; 131 };
132 132
133 } // namespace extensions 133 } // namespace extensions
134 134
135 #endif // CHROME_BROWSER_EXTENSIONS_API_NOTIFICATIONS_NOTIFICATIONS_API_H_ 135 #endif // CHROME_BROWSER_EXTENSIONS_API_NOTIFICATIONS_NOTIFICATIONS_API_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698