Chromium Code Reviews| Index: third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.h |
| diff --git a/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.h b/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.h |
| index 9a67d5d95471403920880f7c0d22751f968cdb5c..d237fe3ac25f9fdc38687355d33a889e5e0a2c74 100644 |
| --- a/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.h |
| +++ b/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.h |
| @@ -66,6 +66,10 @@ class CORE_EXPORT CSSComputedStyleDeclaration final |
| MutableStylePropertySet* copyPropertiesInSet( |
|
sashab
2017/01/09 02:19:04
Fix typo in CL description & wrap to 72 characters
|
| const Vector<CSSPropertyID>&) const; |
| + // CSSOM functions. |
| + unsigned length() const override; |
| + String item(unsigned index) const override; |
| + |
| DECLARE_VIRTUAL_TRACE(); |
| private: |
| @@ -78,10 +82,8 @@ class CORE_EXPORT CSSComputedStyleDeclaration final |
| // fix that. |
| Node* styledNode() const; |
| - // CSSOM functions. Don't make these public. |
| + // CSSOM functions. |
| CSSRule* parentRule() const override; |
| - unsigned length() const override; |
| - String item(unsigned index) const override; |
| const ComputedStyle* computeComputedStyle() const; |
| String getPropertyValue(const String& propertyName) override; |
| String getPropertyPriority(const String& propertyName) override; |