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