| Index: chrome/browser/extensions/api/app/app_api.h
|
| diff --git a/chrome/browser/extensions/api/app/app_api.h b/chrome/browser/extensions/api/app/app_api.h
|
| index e2789c9d05a400499cd000a5c2f745bfe2b1481b..864deceee2211f4970ea779b98f5844821cb1424 100644
|
| --- a/chrome/browser/extensions/api/app/app_api.h
|
| +++ b/chrome/browser/extensions/api/app/app_api.h
|
| @@ -14,15 +14,21 @@ class Profile;
|
| namespace extensions {
|
|
|
| class AppNotifyFunction : public SyncExtensionFunction {
|
| + public:
|
| + DECLARE_EXTENSION_FUNCTION_NAME("experimental.app.notify");
|
| +
|
| + protected:
|
| virtual ~AppNotifyFunction() {}
|
| virtual bool RunImpl() OVERRIDE;
|
| - DECLARE_EXTENSION_FUNCTION_NAME("experimental.app.notify");
|
| };
|
|
|
| class AppClearAllNotificationsFunction : public SyncExtensionFunction {
|
| + public:
|
| + DECLARE_EXTENSION_FUNCTION_NAME("experimental.app.clearAllNotifications");
|
| +
|
| + protected:
|
| virtual ~AppClearAllNotificationsFunction() {}
|
| virtual bool RunImpl() OVERRIDE;
|
| - DECLARE_EXTENSION_FUNCTION_NAME("experimental.app.clearAllNotifications");
|
| };
|
|
|
| class AppEventRouter {
|
|
|