| 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 5afedccb10a40f847210b591721c3b676dd13aa0..0d0ea8891710f37187b9785beb61dcebf0e38a54 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.h
|
| +++ b/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.h
|
| @@ -19,7 +19,6 @@ public:
|
| return new ComputedStylePropertyMap(computedStyleDeclaration);
|
| }
|
|
|
| - CSSStyleValueVector getAll(CSSPropertyID) override;
|
| Vector<String> getProperties() override;
|
|
|
| DEFINE_INLINE_VIRTUAL_TRACE()
|
| @@ -33,6 +32,9 @@ protected:
|
| : ImmutableStylePropertyMap()
|
| , m_computedStyleDeclaration(computedStyleDeclaration) { }
|
|
|
| + CSSStyleValueVector getAllInternal(CSSPropertyID) override;
|
| + CSSStyleValueVector getAllInternal(AtomicString customPropertyName) override;
|
| +
|
| HeapVector<StylePropertyMapEntry> getIterationEntries() override { return HeapVector<StylePropertyMapEntry>(); }
|
|
|
| Member<CSSStyleDeclaration> m_computedStyleDeclaration;
|
|
|