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

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

Issue 287163010: Notify <picture> elements when a media query (potentially) changes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: forgot to adjust test after moving Created 6 years, 6 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/MediaQueryListListener.h
diff --git a/Source/core/css/MediaQueryListListener.h b/Source/core/css/MediaQueryListListener.h
index 244da9886d35e7bfb808de9a242e07deba7d2e43..274d2fdb9c9498d9870f82d9acde0a7d6d259256 100644
--- a/Source/core/css/MediaQueryListListener.h
+++ b/Source/core/css/MediaQueryListListener.h
@@ -53,7 +53,7 @@ public:
bool operator==(const MediaQueryListListener& other) const { return m_function.isNull() ? this == &other : m_function == other.m_function; }
- void trace(Visitor* visitor) { visitor->trace(m_query); }
+ virtual void trace(Visitor* visitor) { visitor->trace(m_query); }
esprehn 2014/07/02 22:40:11 OVERRIDE
protected:
MediaQueryListListener();

Powered by Google App Engine
This is Rietveld 408576698