| Index: third_party/WebKit/Source/core/css/StyleRuleImport.h
|
| diff --git a/third_party/WebKit/Source/core/css/StyleRuleImport.h b/third_party/WebKit/Source/core/css/StyleRuleImport.h
|
| index fbd48c526efff3d9dc88b65e5f45e5fa96b76cd6..2c795e15548eeec8d7cf02707dfcb83e4ddec64e 100644
|
| --- a/third_party/WebKit/Source/core/css/StyleRuleImport.h
|
| +++ b/third_party/WebKit/Source/core/css/StyleRuleImport.h
|
| @@ -40,15 +40,15 @@ public:
|
|
|
| ~StyleRuleImport();
|
|
|
| - StyleSheetContents* parentStyleSheet() const;
|
| - void setParentStyleSheet(StyleSheetContents*);
|
| - void clearParentStyleSheet();
|
| + StyleSheetContents* parentStyleSheet() const { return m_parentStyleSheet; }
|
| + void setParentStyleSheet(StyleSheetContents* sheet) { ASSERT(sheet); m_parentStyleSheet = sheet; }
|
| + void clearParentStyleSheet() { m_parentStyleSheet = nullptr; }
|
|
|
| String href() const { return m_strHref; }
|
| - StyleSheetContents* styleSheet() const;
|
| + StyleSheetContents* styleSheet() const { return m_styleSheet.get(); }
|
|
|
| bool isLoading() const;
|
| - MediaQuerySet* mediaQueries() const;
|
| + MediaQuerySet* mediaQueries() { return m_mediaQueries.get(); }
|
|
|
| void requestStyleSheet();
|
|
|
|
|