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

Unified Diff: sky/engine/core/events/EventTarget.h

Issue 709203002: Remove more oilpan. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 | « sky/engine/core/events/EventQueue.h ('k') | sky/engine/core/events/GenericEventQueue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/events/EventTarget.h
diff --git a/sky/engine/core/events/EventTarget.h b/sky/engine/core/events/EventTarget.h
index 8862adc7cd3cebaa822dcc84d0227a22f745c7d1..89152ca68fe2e528912455787e1c7ebbea2f074d 100644
--- a/sky/engine/core/events/EventTarget.h
+++ b/sky/engine/core/events/EventTarget.h
@@ -75,10 +75,7 @@ public:
// EventTarget directly).
// - Figure out if you now need to inherit from ActiveDOMObject as well.
// - In your class declaration, you will typically use
-// REFCOUNTED_EVENT_TARGET(YourClassName) and
-// WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(YourClassName). Make sure to include
-// this header file in your .h file, or you will get very strange compiler
-// errors.
+// REFCOUNTED_EVENT_TARGET(YourClassName).
// - Call ScriptWrappable::init(this) in your constructor, unless you are already
// doing so.
// - Override EventTarget::interfaceName() and executionContext(). The former
@@ -89,7 +86,7 @@ public:
//
// Optionally, add a FooEvent.idl class, but that's outside the scope of this
// comment (and much more straightforward).
-class EventTarget : public DummyBase<void>, public ScriptWrappable {
+class EventTarget : public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
#if !ENABLE(OILPAN)
« no previous file with comments | « sky/engine/core/events/EventQueue.h ('k') | sky/engine/core/events/GenericEventQueue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698