Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Side by Side Diff: Source/core/accessibility/AXTableColumn.h

Issue 131093003: Update accessibility classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 18 matching lines...) Expand all
29 #ifndef AXTableColumn_h 29 #ifndef AXTableColumn_h
30 #define AXTableColumn_h 30 #define AXTableColumn_h
31 31
32 #include "core/accessibility/AXMockObject.h" 32 #include "core/accessibility/AXMockObject.h"
33 #include "core/accessibility/AXTable.h" 33 #include "core/accessibility/AXTable.h"
34 34
35 namespace WebCore { 35 namespace WebCore {
36 36
37 class RenderTableSection; 37 class RenderTableSection;
38 38
39 class AXTableColumn : public AXMockObject { 39 class AXTableColumn FINAL : public AXMockObject {
40 40
41 private: 41 private:
42 AXTableColumn(); 42 AXTableColumn();
43 public: 43 public:
44 static PassRefPtr<AXTableColumn> create(); 44 static PassRefPtr<AXTableColumn> create();
45 virtual ~AXTableColumn(); 45 virtual ~AXTableColumn();
46 46
47 AXObject* headerObject(); 47 AXObject* headerObject();
48 48
49 virtual AccessibilityRole roleValue() const OVERRIDE { return ColumnRole; } 49 virtual AccessibilityRole roleValue() const OVERRIDE { return ColumnRole; }
(...skipping 13 matching lines...) Expand all
63 virtual bool isTableCol() const OVERRIDE { return true; } 63 virtual bool isTableCol() const OVERRIDE { return true; }
64 AXObject* headerObjectForSection(RenderTableSection*, bool thTagRequired); 64 AXObject* headerObjectForSection(RenderTableSection*, bool thTagRequired);
65 virtual bool computeAccessibilityIsIgnored() const OVERRIDE; 65 virtual bool computeAccessibilityIsIgnored() const OVERRIDE;
66 }; 66 };
67 67
68 DEFINE_AX_OBJECT_TYPE_CASTS(AXTableColumn, isTableCol()); 68 DEFINE_AX_OBJECT_TYPE_CASTS(AXTableColumn, isTableCol());
69 69
70 } // namespace WebCore 70 } // namespace WebCore
71 71
72 #endif // AXTableColumn_h 72 #endif // AXTableColumn_h
OLDNEW
« no previous file with comments | « Source/core/accessibility/AXTableCell.h ('k') | Source/core/accessibility/AXTableHeaderContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698