Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / accessibility / AXARIAGridCell.h
index a0d178d..2eaab9a 100644 (file)
@@ -33,7 +33,7 @@
 
 namespace blink {
 
-class AXARIAGridCell FINAL : public AXTableCell {
+class AXARIAGridCell final : public AXTableCell {
 
 private:
     explicit AXARIAGridCell(RenderObject*);
@@ -42,12 +42,12 @@ public:
     virtual ~AXARIAGridCell();
 
     // fills in the start location and row span of cell
-    virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange) OVERRIDE;
+    virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange) override;
     // fills in the start location and column span of cell
-    virtual void columnIndexRange(pair<unsigned, unsigned>& columnRange) OVERRIDE;
+    virtual void columnIndexRange(pair<unsigned, unsigned>& columnRange) override;
 
 protected:
-    virtual AXObject* parentTable() const OVERRIDE;
+    virtual AXObject* parentTable() const override;
 };
 
 } // namespace blink