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

Unified Diff: content/browser/notifications/notification_event_dispatcher_impl.h

Issue 728763003: Introduce a //content/ API for dispatching notificationclick events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/browser/notifications/notification_event_dispatcher_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/notifications/notification_event_dispatcher_impl.h
diff --git a/content/browser/notifications/notification_event_dispatcher_impl.h b/content/browser/notifications/notification_event_dispatcher_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..c8484ede7002101df09b02f888ba5786b5b814a4
--- /dev/null
+++ b/content/browser/notifications/notification_event_dispatcher_impl.h
@@ -0,0 +1,40 @@
+// Copyright 2014 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 CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_EVENT_DISPATCHER_IMPL_H_
+#define CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_EVENT_DISPATCHER_IMPL_H_
+
+#include "base/memory/singleton.h"
+#include "content/public/browser/notification_event_dispatcher.h"
+
+namespace content {
+
+class NotificationEventDispatcherImpl : public NotificationEventDispatcher {
+ public:
+ // Returns the instance of the NotificationEventDispatcherImpl. Must be called
+ // on the UI thread.
+ static NotificationEventDispatcherImpl* GetInstance();
+
+ // NotificationEventDispatcher implementation.
+ void DispatchNotificationClickEvent(
+ BrowserContext* browser_context,
+ const GURL& origin,
+ int64 service_worker_registration_id,
+ const std::string& notification_id,
+ const ShowDesktopNotificationHostMsgParams& notification_data,
+ const NotificationClickDispatchCompleteCallback&
+ dispatch_complete_callback) override;
+
+ private:
+ NotificationEventDispatcherImpl();
+ ~NotificationEventDispatcherImpl() override;
+
+ friend struct DefaultSingletonTraits<NotificationEventDispatcherImpl>;
+
+ DISALLOW_COPY_AND_ASSIGN(NotificationEventDispatcherImpl);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_EVENT_DISPATCHER_IMPL_H_
« no previous file with comments | « no previous file | content/browser/notifications/notification_event_dispatcher_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698