| Index: Source/core/inspector/InspectorCSSAgent.h
|
| diff --git a/Source/core/inspector/InspectorCSSAgent.h b/Source/core/inspector/InspectorCSSAgent.h
|
| index 638a7c4d3449d1daabc4ff278480f71c66a2b488..14aaeeae72f46ef28d9de899414fc341b198e50f 100644
|
| --- a/Source/core/inspector/InspectorCSSAgent.h
|
| +++ b/Source/core/inspector/InspectorCSSAgent.h
|
| @@ -115,7 +115,6 @@ public:
|
| void disable(ErrorString*) override;
|
| void reset();
|
| void mediaQueryResultChanged();
|
| - void setCSSPropertyValue(ErrorString*, Element*, CSSPropertyID, const String&);
|
|
|
| void activeStyleSheetsUpdated(Document*);
|
| void documentDetached(Document*);
|
| @@ -145,8 +144,11 @@ public:
|
| void collectMediaQueriesFromStyleSheet(CSSStyleSheet*, TypeBuilder::Array<TypeBuilder::CSS::CSSMedia>* mediaArray);
|
| PassRefPtr<TypeBuilder::CSS::CSSMedia> buildMediaObject(const MediaList*, MediaListSource, const String&, CSSStyleSheet*);
|
| PassRefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSMedia> > buildMediaListChain(CSSRule*);
|
| - PassRefPtrWillBeRawPtr<CSSStyleDeclaration> findEffectiveDeclaration(Element*, CSSPropertyID);
|
|
|
| + PassRefPtrWillBeRawPtr<CSSStyleDeclaration> findEffectiveDeclaration(CSSPropertyID, CSSRuleList* matchedRulesList, CSSStyleDeclaration* inlineStyle);
|
| + void setCSSPropertyValue(ErrorString*, Element*, CSSStyleDeclaration*, CSSPropertyID, const String& value, bool forceImportant = false);
|
| +
|
| + PassRefPtrWillBeRawPtr<CSSRuleList> matchedRulesList(Element*);
|
| private:
|
| class StyleSheetAction;
|
| class SetStyleSheetTextAction;
|
|
|