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

Unified Diff: Source/core/css/MediaQueryMatcher.cpp

Issue 989173003: Fix template angle bracket syntax in css (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « Source/core/css/MediaQueryMatcher.h ('k') | Source/core/css/PageRuleCollector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/MediaQueryMatcher.cpp
diff --git a/Source/core/css/MediaQueryMatcher.cpp b/Source/core/css/MediaQueryMatcher.cpp
index 451faf63b98a31fb4d9747978fb5136fa7fb77dc..22aa14b345d82e2c73d95866f3d216b59033a346 100644
--- a/Source/core/css/MediaQueryMatcher.cpp
+++ b/Source/core/css/MediaQueryMatcher.cpp
@@ -119,7 +119,7 @@ void MediaQueryMatcher::mediaFeaturesChanged()
if (!m_document)
return;
- WillBeHeapVector<RefPtrWillBeMember<MediaQueryListListener> > listenersToNotify;
+ WillBeHeapVector<RefPtrWillBeMember<MediaQueryListListener>> listenersToNotify;
for (const auto& list : m_mediaLists) {
if (list->mediaFeaturesChanged(&listenersToNotify)) {
RefPtrWillBeRawPtr<Event> event(MediaQueryListEvent::create(list));
@@ -135,7 +135,7 @@ void MediaQueryMatcher::viewportChanged()
if (!m_document)
return;
- WillBeHeapVector<RefPtrWillBeMember<MediaQueryListListener> > listenersToNotify;
+ WillBeHeapVector<RefPtrWillBeMember<MediaQueryListListener>> listenersToNotify;
for (const auto& listener : m_viewportListeners)
listenersToNotify.append(listener);
« no previous file with comments | « Source/core/css/MediaQueryMatcher.h ('k') | Source/core/css/PageRuleCollector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698