Commit 19625a92 authored by hans@chromium.org's avatar hans@chromium.org

Remove work-around for Win-Clang in-class initializer bug

BUG=488634
NOTRY=true

Review URL: https://codereview.chromium.org/1303413005

git-svn-id: svn://svn.chromium.org/blink/trunk@201164 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 863997ef
......@@ -48,9 +48,6 @@ DEFINE_TRACE(MatchedProperties)
visitor->trace(properties);
}
// TODO(thakis): Remove this once http://crbug.com/488634 is fixed.
MatchResult::MatchResult() = default;
void MatchResult::addMatchedProperties(const StylePropertySet* properties, unsigned linkMatchType, PropertyWhitelistType propertyWhitelistType)
{
m_matchedProperties.grow(m_matchedProperties.size() + 1);
......
......@@ -87,8 +87,6 @@ private:
class CORE_EXPORT MatchResult {
STACK_ALLOCATED();
public:
MatchResult();
void addMatchedProperties(const StylePropertySet* properties, unsigned linkMatchType = CSSSelector::MatchAll, PropertyWhitelistType = PropertyWhitelistNone);
bool hasMatchedProperties() const { return m_matchedProperties.size(); }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment