| 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 62334aa709cb7f1984ed7be89597a8d4fbb37484..d3ef0fd65b2017788d579236718f533e8ae707f9 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.h
|
| +++ b/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.h
|
| @@ -39,6 +39,7 @@ class CORE_EXPORT ComputedStylePropertyMap : public ImmutableStylePropertyMap {
|
|
|
| private:
|
| Node* node() const;
|
| + const ComputedStyle* updateStyle() const;
|
|
|
| protected:
|
| ComputedStylePropertyMap(Node* node, const String& pseudoElement = String())
|
| @@ -49,7 +50,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>();
|
|
|