Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / timing / PerformanceMark.h
index 793cb80..ae57d1e 100644 (file)
@@ -33,7 +33,7 @@
 
 namespace blink {
 
-class PerformanceMark FINAL : public PerformanceEntry {
+class PerformanceMark final : public PerformanceEntry {
     DEFINE_WRAPPERTYPEINFO();
 public:
     static PassRefPtrWillBeRawPtr<PerformanceMark> create(const String& name, double startTime)
@@ -41,9 +41,9 @@ public:
         return adoptRefWillBeNoop(new PerformanceMark(name, startTime));
     }
 
-    virtual bool isMark() OVERRIDE { return true; }
+    virtual bool isMark() override { return true; }
 
-    virtual void trace(Visitor* visitor) OVERRIDE
+    virtual void trace(Visitor* visitor) override
     {
         PerformanceEntry::trace(visitor);
     }