Index: third_party/WebKit/Source/core/css/resolver/StyleResolver.h |
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleResolver.h b/third_party/WebKit/Source/core/css/resolver/StyleResolver.h |
index 768cc3658e7bb6e8bcfc6649682d014ebd95c85a..924311f62d7ae0f55e8de165f44a28406a2695a1 100644 |
--- a/third_party/WebKit/Source/core/css/resolver/StyleResolver.h |
+++ b/third_party/WebKit/Source/core/css/resolver/StyleResolver.h |
@@ -80,13 +80,15 @@ using ActiveInterpolationsMap = HashMap<PropertyHandle, Vector<RefPtr<Interpolat |
// This class selects a ComputedStyle for a given element based on a collection of stylesheets. |
class CORE_EXPORT StyleResolver final : public NoBaseWillBeGarbageCollectedFinalized<StyleResolver> { |
- WTF_MAKE_NONCOPYABLE(StyleResolver); WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(StyleResolver); |
+ WTF_MAKE_NONCOPYABLE(StyleResolver); |
+ WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(StyleResolver); |
public: |
static PassOwnPtrWillBeRawPtr<StyleResolver> create(Document& document) |
{ |
return adoptPtrWillBeNoop(new StyleResolver(document)); |
} |
~StyleResolver(); |
+ void dispose(); |
haraken
2015/10/08 06:15:45
Ditto.
|
// FIXME: StyleResolver should not be keeping tree-walk state. |
// These should move to some global tree-walk state, or should be contained in a |