| Index: third_party/WebKit/Source/core/dom/Element.h
|
| diff --git a/third_party/WebKit/Source/core/dom/Element.h b/third_party/WebKit/Source/core/dom/Element.h
|
| index bf54f5229270cfc93761d2ef7e5b6b248d360d92..44adfa1ea65db9370a045f63b8a9e337e923fc74 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.h
|
| +++ b/third_party/WebKit/Source/core/dom/Element.h
|
| @@ -290,6 +290,7 @@ public:
|
|
|
| void setInlineStyleProperty(CSSPropertyID, CSSValueID identifier, bool important = false);
|
| void setInlineStyleProperty(CSSPropertyID, double value, CSSPrimitiveValue::UnitType, bool important = false);
|
| + // TODO(sashab): Make this take a const CSSValue&.
|
| void setInlineStyleProperty(CSSPropertyID, const CSSValue*, bool important = false);
|
| bool setInlineStyleProperty(CSSPropertyID, const String& value, bool important = false);
|
|
|
| @@ -601,6 +602,7 @@ protected:
|
| void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPropertyID, CSSValueID identifier);
|
| void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPropertyID, double value, CSSPrimitiveValue::UnitType);
|
| void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPropertyID, const String& value);
|
| + // TODO(sashab): Make this take a const CSSValue&.
|
| void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPropertyID, const CSSValue*);
|
|
|
| InsertionNotificationRequest insertedInto(ContainerNode*) override;
|
|
|