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

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

Issue 2895283004: Replace AnimatableValues with ComputedStyle references for CSS Transitions (Closed)
Patch Set: Created 3 years, 7 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/CSSPropertyEquality.h
diff --git a/third_party/WebKit/Source/core/css/CSSPropertyEquality.h b/third_party/WebKit/Source/core/css/CSSPropertyEquality.h
index d09e362e609f214b092983a5920397d0a3388622..6610625187c171429f65b1b1a4ae8eea15d2169e 100644
--- a/third_party/WebKit/Source/core/css/CSSPropertyEquality.h
+++ b/third_party/WebKit/Source/core/css/CSSPropertyEquality.h
@@ -12,19 +12,15 @@
namespace blink {
class ComputedStyle;
+class PropertyHandle;
class CSSPropertyEquality {
STATIC_ONLY(CSSPropertyEquality);
public:
- static bool PropertiesEqual(CSSPropertyID,
+ static bool PropertiesEqual(const PropertyHandle&,
const ComputedStyle&,
const ComputedStyle&);
-
- static bool RegisteredCustomPropertiesEqual(
- const WTF::AtomicString& property_name,
- const ComputedStyle&,
- const ComputedStyle&);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698