| Index: Source/core/dom/ChildListMutationScope.h
|
| diff --git a/Source/core/dom/ChildListMutationScope.h b/Source/core/dom/ChildListMutationScope.h
|
| index 2ce26deefab3495c4266f85ca5b174d7f0f8b193..0e5c07088126ff2b64cd08265f2e60b43b622975 100644
|
| --- a/Source/core/dom/ChildListMutationScope.h
|
| +++ b/Source/core/dom/ChildListMutationScope.h
|
| @@ -49,7 +49,7 @@ class MutationObserverInterestGroup;
|
| // active ChildListMutationScopes for that Node. Once the last ChildListMutationScope
|
| // is destructed the accumulator enqueues a mutation record for the recorded
|
| // mutations and the accumulator can be garbage collected.
|
| -class ChildListMutationAccumulator FINAL : public RefCountedWillBeGarbageCollected<ChildListMutationAccumulator> {
|
| +class ChildListMutationAccumulator final : public RefCountedWillBeGarbageCollected<ChildListMutationAccumulator> {
|
| DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(ChildListMutationAccumulator);
|
| public:
|
| static PassRefPtrWillBeRawPtr<ChildListMutationAccumulator> getOrCreate(Node&);
|
| @@ -87,7 +87,7 @@ private:
|
| unsigned m_mutationScopes;
|
| };
|
|
|
| -class ChildListMutationScope FINAL {
|
| +class ChildListMutationScope final {
|
| WTF_MAKE_NONCOPYABLE(ChildListMutationScope);
|
| STACK_ALLOCATED();
|
| public:
|
|
|