Index: third_party/WebKit/Source/core/css/CSSStyleSheet.h |
diff --git a/third_party/WebKit/Source/core/css/CSSStyleSheet.h b/third_party/WebKit/Source/core/css/CSSStyleSheet.h |
index 1ad6f458e2668f216503bd018bab13f3d7b49023..16f88e1c57e8ce71ec7567362488605c535b3e4d 100644 |
--- a/third_party/WebKit/Source/core/css/CSSStyleSheet.h |
+++ b/third_party/WebKit/Source/core/css/CSSStyleSheet.h |
@@ -99,7 +99,7 @@ class CORE_EXPORT CSSStyleSheet final : public StyleSheet { |
void clearOwnerRule() { m_ownerRule = nullptr; } |
Document* ownerDocument() const; |
- MediaQuerySet* mediaQueries() const { return m_mediaQueries.get(); } |
+ const MediaQuerySet* mediaQueries() const { return m_mediaQueries.get(); } |
sof
2016/12/02 09:30:11
nit: get() is redundant.
rune
2016/12/02 09:52:52
Done.
|
void setMediaQueries(MediaQuerySet*); |
void setTitle(const String& title) { m_title = title; } |
// Set by LinkStyle iff CORS-enabled fetch of stylesheet succeeded from this |