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

Unified Diff: Source/core/page/Performance.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/core/page/Performance.h
diff --git a/Source/core/page/Performance.h b/Source/core/page/Performance.h
index 161a584bc8a4fa52b65ad058f0e75c10f1803391..a7948503c675fb0e3d5af5c01961ed9259f077bf 100644
--- a/Source/core/page/Performance.h
+++ b/Source/core/page/Performance.h
@@ -51,7 +51,7 @@ class ResourceRequest;
class ResourceResponse;
class UserTiming;
-class Performance : public ScriptWrappable, public RefCounted<Performance>, public DOMWindowProperty, public EventTarget {
+class Performance : public EventTarget, public ScriptWrappable, public RefCounted<Performance>, public DOMWindowProperty {
public:
static PassRefPtr<Performance> create(Frame* frame) { return adoptRef(new Performance(frame)); }
~Performance();

Powered by Google App Engine
This is Rietveld 408576698