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

Unified Diff: Source/modules/notifications/Notification.h

Issue 18778002: Inherit EventTarget interface instead of duplicating its code (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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: Source/modules/notifications/Notification.h
diff --git a/Source/modules/notifications/Notification.h b/Source/modules/notifications/Notification.h
index 2b85a1dcc3185c8887935e4d57026943a6ec7a96..cd945a22a2194264dac415672fd3db321d3b63f7 100644
--- a/Source/modules/notifications/Notification.h
+++ b/Source/modules/notifications/Notification.h
@@ -64,7 +64,7 @@ class ThreadableLoader;
typedef int ExceptionCode;
-class Notification : public RefCounted<Notification>, public ScriptWrappable, public ActiveDOMObject, public EventTarget {
+class Notification : public EventTarget, public RefCounted<Notification>, public ScriptWrappable, public ActiveDOMObject {
WTF_MAKE_FAST_ALLOCATED;
public:
Notification();

Powered by Google App Engine
This is Rietveld 408576698