| 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 AXMenuListOption* toAXMenuListOption(AXObject* object) | 64 DEFINE_AX_OBJECT_TYPE_CASTS(AXMenuListOption, isMenuListOption()); |
| 65 { | |
| 66 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isMenuListOption()); | |
| 67 return static_cast<AXMenuListOption*>(object); | |
| 68 } | |
| 69 | |
| 70 inline const AXMenuListOption* toAXMenuListOption(const AXObject* object) | |
| 71 { | |
| 72 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isMenuListOption()); | |
| 73 return static_cast<const AXMenuListOption*>(object); | |
| 74 } | |
| 75 | |
| 76 // This will catch anyone doing an unnecessary cast. | |
| 77 void toAXMenuListOption(const AXMenuListOption*); | |
| 78 | 65 |
| 79 } // namespace WebCore | 66 } // namespace WebCore |
| 80 | 67 |
| 81 #endif // AXMenuListOption_h | 68 #endif // AXMenuListOption_h |
| OLD | NEW |