X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fplatform%2FRefCountedSupplement.h;h=29c9d085bdc71c8ec32c90b40a126b91f6c88c19;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=0cc99eddac5e6372ecbb2c48a06fce77ca93d722;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/platform/RefCountedSupplement.h b/src/third_party/WebKit/Source/platform/RefCountedSupplement.h index 0cc99ed..29c9d08 100644 --- a/src/third_party/WebKit/Source/platform/RefCountedSupplement.h +++ b/src/third_party/WebKit/Source/platform/RefCountedSupplement.h @@ -40,12 +40,12 @@ public: virtual ~RefCountedSupplement() { } - class Wrapper FINAL : public Supplement { + class Wrapper final : public Supplement { public: explicit Wrapper(PassRefPtr wrapped) : m_wrapped(wrapped) { } virtual ~Wrapper() { } #if ENABLE(SECURITY_ASSERT) - virtual bool isRefCountedWrapper() const OVERRIDE { return true; } + virtual bool isRefCountedWrapper() const override { return true; } #endif ThisType* wrapped() const { return m_wrapped.get(); }