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

Unified Diff: sky/engine/core/css/StyleRule.cpp

Issue 810543002: Remove dead StyleRuleFilter. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 | « sky/engine/core/css/StyleRule.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/css/StyleRule.cpp
diff --git a/sky/engine/core/css/StyleRule.cpp b/sky/engine/core/css/StyleRule.cpp
index 66777ea721f79fa027c71124f8d3432a980f1128..7e3adfc084961b272ce6cf497db97e4223cd8a7b 100644
--- a/sky/engine/core/css/StyleRule.cpp
+++ b/sky/engine/core/css/StyleRule.cpp
@@ -51,9 +51,6 @@ void StyleRuleBase::destroy()
case Keyframes:
delete toStyleRuleKeyframes(this);
return;
- case Filter:
- delete toStyleRuleFilter(this);
- return;
case Unknown:
case Keyframe:
ASSERT_NOT_REACHED();
@@ -114,19 +111,4 @@ StyleRuleSupports::StyleRuleSupports(const String& conditionText, bool condition
{
}
-StyleRuleFilter::StyleRuleFilter(const String& filterName)
- : StyleRuleBase(Filter)
- , m_filterName(filterName)
-{
-}
-
-StyleRuleFilter::~StyleRuleFilter()
-{
-}
-
-void StyleRuleFilter::setProperties(PassRefPtr<StylePropertySet> properties)
-{
- m_properties = properties;
-}
-
} // namespace blink
« no previous file with comments | « sky/engine/core/css/StyleRule.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698