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

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

Issue 22887044: [oilpan] Make the oilpan branch build on Mac. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Add FIXME. Created 7 years, 4 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/CSSParser.cpp ('k') | Source/core/css/MediaQueryExp.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/MediaList.cpp
diff --git a/Source/core/css/MediaList.cpp b/Source/core/css/MediaList.cpp
index 582f4b366f2eaf37a5772d71d2fb6a7dfea6522e..1653e0727b028cf0ba126731719029061a6447f4 100644
--- a/Source/core/css/MediaList.cpp
+++ b/Source/core/css/MediaList.cpp
@@ -232,13 +232,11 @@ DEFINE_GC_TYPE_MARKER(MediaList);
MediaList::MediaList(const Handle<MediaQuerySet>& mediaQueries, const Handle<CSSStyleSheet>& parentSheet)
: m_mediaQueries(mediaQueries)
, m_parentStyleSheet(parentSheet)
- , m_parentRule(0)
{
}
MediaList::MediaList(const Handle<MediaQuerySet>& mediaQueries, const Handle<CSSRule>& parentRule)
: m_mediaQueries(mediaQueries)
- , m_parentStyleSheet(0)
, m_parentRule(parentRule)
{
}
« no previous file with comments | « Source/core/css/CSSParser.cpp ('k') | Source/core/css/MediaQueryExp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698