| Index: third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.h
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.h b/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.h
|
| index 6fb8e019a2fa6842dd0c2c3e4476f6672473a9d4..beadb4731846020997463ae8c1cb97b9319290ae 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.h
|
| +++ b/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.h
|
| @@ -31,6 +31,7 @@ class CORE_EXPORT ComputedStylePropertyMap : public ImmutableStylePropertyMap {
|
|
|
| private:
|
| Node* node() const;
|
| + const ComputedStyle* updateStyle() const;
|
|
|
| protected:
|
| ComputedStylePropertyMap(Node* node, const String& pseudoElement = String())
|
| @@ -41,7 +42,8 @@ class CORE_EXPORT ComputedStylePropertyMap : public ImmutableStylePropertyMap {
|
| m_node(node) {}
|
|
|
| CSSStyleValueVector getAllInternal(CSSPropertyID) override;
|
| - CSSStyleValueVector getAllInternal(AtomicString customPropertyName) override;
|
| + CSSStyleValueVector getAllInternal(AtomicString customPropertyName,
|
| + ExceptionState&) override;
|
|
|
| HeapVector<StylePropertyMapEntry> getIterationEntries() override {
|
| return HeapVector<StylePropertyMapEntry>();
|
|
|