Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / accessibility / AXARIAGridCell.h
index 0bf53fb..2eaab9a 100644 (file)
@@ -31,9 +31,9 @@
 
 #include "core/accessibility/AXTableCell.h"
 
-namespace WebCore {
+namespace blink {
 
-class AXARIAGridCell : public AXTableCell {
+class AXARIAGridCell final : public AXTableCell {
 
 private:
     explicit AXARIAGridCell(RenderObject*);
@@ -42,14 +42,14 @@ 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;
+    virtual AXObject* parentTable() const override;
 };
 
-} // namespace WebCore
+} // namespace blink
 
 #endif // AXARIAGridCell_h