| 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 d055abac8553a83d14f5db33fc31cfc1252da99e..0f8ebc925c4136fc2ce7e113abb4d7a6cde8103f 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSStyleSheet.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSStyleSheet.h
|
| @@ -86,7 +86,7 @@ public:
|
|
|
| void clearOwnerRule() { m_ownerRule = nullptr; }
|
| Document* ownerDocument() const;
|
| - MediaQuerySet* mediaQueries() const;
|
| + MediaQuerySet* mediaQueries() const { return m_mediaQueries.get(); }
|
| void setMediaQueries(PassRefPtrWillBeRawPtr<MediaQuerySet>);
|
| void setTitle(const String& title) { m_title = title; }
|
| // Set by LinkStyle iff CORS-enabled fetch of stylesheet succeeded from this origin.
|
| @@ -110,7 +110,7 @@ public:
|
|
|
| void clearChildRuleCSSOMWrappers();
|
|
|
| - StyleSheetContents* contents() const;
|
| + StyleSheetContents* contents() const { return m_contents.get(); }
|
|
|
| bool isInline() const { return m_isInlineStylesheet; }
|
| TextPosition startPositionInSource() const { return m_startPosition; }
|
|
|