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

Side by Side Diff: content/public/browser/notification_event_dispatcher.h

Issue 1619703002: Implement notificationclose event (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed some logging statements Created 4 years, 11 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CONTENT_PUBLIC_BROWSER_NOTIFICATION_EVENT_DISPATCHER_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_NOTIFICATION_EVENT_DISPATCHER_H_
6 #define CONTENT_PUBLIC_BROWSER_NOTIFICATION_EVENT_DISPATCHER_H_ 6 #define CONTENT_PUBLIC_BROWSER_NOTIFICATION_EVENT_DISPATCHER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <string> 9 #include <string>
10 10
(...skipping 23 matching lines...) Expand all
34 // with |persistent_notification_id| belonging to |origin|. The |callback| 34 // with |persistent_notification_id| belonging to |origin|. The |callback|
35 // will be invoked when it's known whether the event successfully executed. 35 // will be invoked when it's known whether the event successfully executed.
36 virtual void DispatchNotificationClickEvent( 36 virtual void DispatchNotificationClickEvent(
37 BrowserContext* browser_context, 37 BrowserContext* browser_context,
38 int64_t persistent_notification_id, 38 int64_t persistent_notification_id,
39 const GURL& origin, 39 const GURL& origin,
40 int action_index, 40 int action_index,
41 const NotificationClickDispatchCompleteCallback& 41 const NotificationClickDispatchCompleteCallback&
42 dispatch_complete_callback) = 0; 42 dispatch_complete_callback) = 0;
43 43
44 // Dispatches the "notificationclose" event on the Service Worker associated
45 // with |persistent_notification_id| belonging to |origin|. The |callback|
46 // will be invoked when it's known whether the event successfully executed.
47 virtual void DispatchNotificationCloseEvent(
48 BrowserContext* browser_context,
49 int64_t persistent_notification_id,
50 const GURL& origin,
51 const NotificationClickDispatchCompleteCallback&
52 dispatch_complete_callback) = 0;
53
54
44 protected: 55 protected:
45 virtual ~NotificationEventDispatcher() {} 56 virtual ~NotificationEventDispatcher() {}
46 }; 57 };
47 58
48 } // namespace content 59 } // namespace content
49 60
50 #endif // CONTENT_PUBLIC_BROWSER_NOTIFICATION_EVENT_DISPATCHER_H_ 61 #endif // CONTENT_PUBLIC_BROWSER_NOTIFICATION_EVENT_DISPATCHER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698