| Index: Source/core/css/MediaQueryList.h
|
| diff --git a/Source/core/css/MediaQueryList.h b/Source/core/css/MediaQueryList.h
|
| index 52c73ef0a7ec4f39b30c8a495257824be1a3d9cb..fd00e845f92ddbf4e5e0015986abcf74db70a2c3 100644
|
| --- a/Source/core/css/MediaQueryList.h
|
| +++ b/Source/core/css/MediaQueryList.h
|
| @@ -20,6 +20,7 @@
|
| #ifndef MediaQueryList_h
|
| #define MediaQueryList_h
|
|
|
| +#include "bindings/core/v8/ScriptWrappable.h"
|
| #include "core/dom/ActiveDOMObject.h"
|
| #include "platform/heap/Handle.h"
|
| #include "wtf/Forward.h"
|
| @@ -39,7 +40,7 @@ class MediaQuerySet;
|
| // retrieve the current value of the given media query and to add/remove listeners that
|
| // will be called whenever the value of the query changes.
|
|
|
| -class MediaQueryList FINAL : public RefCountedWillBeGarbageCollectedFinalized<MediaQueryList>, public ActiveDOMObject {
|
| +class MediaQueryList FINAL : public RefCountedWillBeGarbageCollectedFinalized<MediaQueryList>, public ActiveDOMObject, public ScriptWrappable {
|
| public:
|
| static PassRefPtrWillBeRawPtr<MediaQueryList> create(ExecutionContext*, PassRefPtrWillBeRawPtr<MediaQueryMatcher>, PassRefPtrWillBeRawPtr<MediaQuerySet>);
|
| virtual ~MediaQueryList();
|
|
|