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

Unified Diff: third_party/WebKit/public/platform/modules/notifications/WebNotificationDelegate.h

Issue 1904163002: Move Web Notifications to use Mojo Base URL: https://chromium.googlesource.com/chromium/src.git@skbitmap-blink
Patch Set: it works \o/ Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/public/platform/modules/notifications/WebNotificationDelegate.h
diff --git a/third_party/WebKit/public/platform/modules/notifications/WebNotificationDelegate.h b/third_party/WebKit/public/platform/modules/notifications/WebNotificationDelegate.h
deleted file mode 100644
index 5c77233e2320a4fbea7d8a069d44734d8900ceed..0000000000000000000000000000000000000000
--- a/third_party/WebKit/public/platform/modules/notifications/WebNotificationDelegate.h
+++ /dev/null
@@ -1,23 +0,0 @@
-// 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 WebNotificationDelegate_h
-#define WebNotificationDelegate_h
-
-namespace blink {
-
-// A delegate through which the embedder can trigger events on a Document-bound
-// Web Notifications object. Service Worker-bound Web Notifications will not have
-// a delegate, as their events will be fired on a Service Worker instead.
-class WebNotificationDelegate {
-public:
- virtual void dispatchClickEvent() = 0;
- virtual void dispatchShowEvent() = 0;
- virtual void dispatchErrorEvent() = 0;
- virtual void dispatchCloseEvent() = 0;
-};
-
-} // namespace blink
-
-#endif // WebNotificationDelegate_h

Powered by Google App Engine
This is Rietveld 408576698