| Index: Source/core/css/MediaQueryList.cpp
|
| diff --git a/Source/core/css/MediaQueryList.cpp b/Source/core/css/MediaQueryList.cpp
|
| index fd55bd562cd84a0be5ef9fd317acd3f327b092b8..70943e0a5c10d6f506881ca65ea02b4eac5b4325 100644
|
| --- a/Source/core/css/MediaQueryList.cpp
|
| +++ b/Source/core/css/MediaQueryList.cpp
|
| @@ -86,13 +86,13 @@ void MediaQueryList::documentDetached()
|
| m_listeners.clear();
|
| }
|
|
|
| -void MediaQueryList::mediaFeaturesChanged(WillBeHeapVector<RefPtrWillBeMember<MediaQueryListListener> >* toNotify)
|
| +void MediaQueryList::mediaFeaturesChanged(WillBeHeapVector<RefPtrWillBeMember<MediaQueryListListener> >* listenersToNotify)
|
| {
|
| m_matchesDirty = true;
|
| if (!updateMatches())
|
| return;
|
| for (ListenerList::const_iterator it = m_listeners.begin(), end = m_listeners.end(); it != end; ++it) {
|
| - toNotify->append(*it);
|
| + listenersToNotify->append(*it);
|
| }
|
| }
|
|
|
|
|