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

Unified Diff: Source/core/css/MediaQueryList.h

Issue 1238083002: Oilpan: Move the EventListener hierarchy to Oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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/css/MediaQueryList.h
diff --git a/Source/core/css/MediaQueryList.h b/Source/core/css/MediaQueryList.h
index 6dacdfdc602169152cac2d60f149ef0de6b66311..f1a75ee5872f5458293ba977e306f65a539034d2 100644
--- a/Source/core/css/MediaQueryList.h
+++ b/Source/core/css/MediaQueryList.h
@@ -56,8 +56,8 @@ public:
// These two functions are provided for compatibility with JS code
// written before the change listener became a DOM event.
- void addDeprecatedListener(PassRefPtr<EventListener>);
- void removeDeprecatedListener(PassRefPtr<EventListener>);
+ void addDeprecatedListener(PassRefPtrWillBeRawPtr<EventListener>);
+ void removeDeprecatedListener(PassRefPtrWillBeRawPtr<EventListener>);
// C++ code can use these functions to listen to changes instead of having to use DOM event listeners.
void addListener(PassRefPtrWillBeRawPtr<MediaQueryListListener>);

Powered by Google App Engine
This is Rietveld 408576698