Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(355)

Unified Diff: third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.h

Issue 2625303002: Fix CSSPropertySetterGetterMethods regression (Closed)
Patch Set: fix Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 e66487bf60378ee434238ed8eb5ea588320e2f41..9a67d5d95471403920880f7c0d22751f968cdb5c 100644
--- a/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.h
+++ b/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.h
@@ -87,8 +87,7 @@ class CORE_EXPORT CSSComputedStyleDeclaration final
String getPropertyPriority(const String& propertyName) override;
String getPropertyShorthand(const String& propertyName) override;
bool isPropertyImplicit(const String& propertyName) override;
- void setProperty(const ExecutionContext*,
- const String& propertyName,
+ void setProperty(const String& propertyName,
const String& value,
const String& priority,
ExceptionState&) override;
@@ -105,7 +104,6 @@ class CORE_EXPORT CSSComputedStyleDeclaration final
const String& customPropertyName,
const String& value,
bool important,
- const ExecutionContext*,
ExceptionState&) override;
bool cssPropertyMatches(CSSPropertyID, const CSSValue*) const override;

Powered by Google App Engine
This is Rietveld 408576698