| Index: Source/modules/navigatorcontentutils/NavigatorContentUtils.h
|
| diff --git a/Source/modules/navigatorcontentutils/NavigatorContentUtils.h b/Source/modules/navigatorcontentutils/NavigatorContentUtils.h
|
| index f235fb0373ed444f2bcae5b0af275ee4d2456a3c..b9c52fe7d0d520c34f72fb76bf90668bb1e64337 100644
|
| --- a/Source/modules/navigatorcontentutils/NavigatorContentUtils.h
|
| +++ b/Source/modules/navigatorcontentutils/NavigatorContentUtils.h
|
| @@ -39,7 +39,7 @@ class ExceptionState;
|
| class Navigator;
|
| class Page;
|
|
|
| -class NavigatorContentUtils FINAL : public NoBaseWillBeGarbageCollectedFinalized<NavigatorContentUtils>, public WillBeHeapSupplement<Page> {
|
| +class NavigatorContentUtils final : public NoBaseWillBeGarbageCollectedFinalized<NavigatorContentUtils>, public WillBeHeapSupplement<Page> {
|
| WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NavigatorContentUtils);
|
| public:
|
| virtual ~NavigatorContentUtils();
|
| @@ -53,7 +53,7 @@ public:
|
|
|
| static PassOwnPtrWillBeRawPtr<NavigatorContentUtils> create(PassOwnPtr<NavigatorContentUtilsClient>);
|
|
|
| - virtual void trace(Visitor* visitor) OVERRIDE { WillBeHeapSupplement<Page>::trace(visitor); }
|
| + virtual void trace(Visitor* visitor) override { WillBeHeapSupplement<Page>::trace(visitor); }
|
|
|
| void setClientForTest(PassOwnPtr<NavigatorContentUtilsClient> client) { m_client = client; }
|
|
|
|
|