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

Unified Diff: third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp

Issue 2887293002: Move StyleRareNonInheritedData::has* methods to ComputedStyle. (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
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
diff --git a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
index ff44903c283b81cb50276ab5b1110e3e753874ae..5d0c05ec25e0e448febe102e136a62b9851b70c9 100644
--- a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
+++ b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
@@ -338,14 +338,6 @@ bool StyleRareNonInheritedData::TransitionDataEquivalent(
return transitions_->TransitionsMatchForStyleRecalc(*o.transitions_);
}
-bool StyleRareNonInheritedData::HasFilters() const {
- return filter_.Get() && !filter_->operations_.IsEmpty();
-}
-
-bool StyleRareNonInheritedData::HasBackdropFilters() const {
- return backdrop_filter_.Get() && !backdrop_filter_->operations_.IsEmpty();
-}
-
bool StyleRareNonInheritedData::ShapeOutsideDataEquivalent(
const StyleRareNonInheritedData& o) const {
return DataEquivalent(shape_outside_, o.shape_outside_);
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698