| Index: Source/core/storage/Storage.h
|
| diff --git a/Source/core/storage/Storage.h b/Source/core/storage/Storage.h
|
| index c2de7baf6e953909b246b6ebf2f25f77ee14c416..6341cc5eae502557c3d11ad1d6ac359025e1ba1b 100644
|
| --- a/Source/core/storage/Storage.h
|
| +++ b/Source/core/storage/Storage.h
|
| @@ -40,7 +40,7 @@ namespace blink {
|
| class ExceptionState;
|
| class LocalFrame;
|
|
|
| -class Storage FINAL : public RefCountedWillBeGarbageCollected<Storage>, public ScriptWrappable, public DOMWindowProperty {
|
| +class Storage final : public RefCountedWillBeGarbageCollected<Storage>, public ScriptWrappable, public DOMWindowProperty {
|
| DEFINE_WRAPPERTYPEINFO();
|
| WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Storage);
|
| DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(Storage);
|
| @@ -66,7 +66,7 @@ public:
|
| void namedPropertyEnumerator(Vector<String>&, ExceptionState&);
|
| bool namedPropertyQuery(const AtomicString&, ExceptionState&);
|
|
|
| - virtual void trace(Visitor*) OVERRIDE;
|
| + virtual void trace(Visitor*) override;
|
|
|
| private:
|
| Storage(LocalFrame*, PassOwnPtrWillBeRawPtr<StorageArea>);
|
|
|