OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2010 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 virtual bool isSelected() const OVERRIDE; | 54 virtual bool isSelected() const OVERRIDE; |
55 virtual void setSelected(bool) OVERRIDE; | 55 virtual void setSelected(bool) OVERRIDE; |
56 virtual bool canSetSelectedAttribute() const OVERRIDE; | 56 virtual bool canSetSelectedAttribute() const OVERRIDE; |
57 virtual LayoutRect elementRect() const OVERRIDE; | 57 virtual LayoutRect elementRect() const OVERRIDE; |
58 virtual String stringValue() const OVERRIDE; | 58 virtual String stringValue() const OVERRIDE; |
59 virtual bool computeAccessibilityIsIgnored() const OVERRIDE; | 59 virtual bool computeAccessibilityIsIgnored() const OVERRIDE; |
60 | 60 |
61 RefPtr<HTMLElement> m_element; | 61 RefPtr<HTMLElement> m_element; |
62 }; | 62 }; |
63 | 63 |
| 64 inline AccessibilityMenuListOption* toAccessibilityMenuListOption(AccessibilityO
bject* object) |
| 65 { |
| 66 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isMenuListOption()); |
| 67 return static_cast<AccessibilityMenuListOption*>(object); |
| 68 } |
| 69 |
| 70 inline const AccessibilityMenuListOption* toAccessibilityMenuListOption(const Ac
cessibilityObject* object) |
| 71 { |
| 72 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isMenuListOption()); |
| 73 return static_cast<const AccessibilityMenuListOption*>(object); |
| 74 } |
| 75 |
| 76 // This will catch anyone doing an unnecessary cast. |
| 77 void toAccessibilityMenuListOption(const AccessibilityMenuListOption*); |
| 78 |
64 } // namespace WebCore | 79 } // namespace WebCore |
65 | 80 |
66 #endif // AccessibilityMenuListOption_h | 81 #endif // AccessibilityMenuListOption_h |
OLD | NEW |