| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 4 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 4 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 5 * (C) 2000 Dirk Mueller (mueller@kde.org) | 5 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights
reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights
reserved. |
| 7 * Copyright (C) 2010 Google Inc. All rights reserved. | 7 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 void optionRemoved(const HTMLOptionElement&); | 120 void optionRemoved(const HTMLOptionElement&); |
| 121 bool anonymousIndexedSetter(unsigned, PassRefPtrWillBeRawPtr<HTMLOptionEleme
nt>, ExceptionState&); | 121 bool anonymousIndexedSetter(unsigned, PassRefPtrWillBeRawPtr<HTMLOptionEleme
nt>, ExceptionState&); |
| 122 | 122 |
| 123 void updateListOnRenderer(); | 123 void updateListOnRenderer(); |
| 124 | 124 |
| 125 HTMLOptionElement* spatialNavigationFocusedOption(); | 125 HTMLOptionElement* spatialNavigationFocusedOption(); |
| 126 void handleMouseRelease(); | 126 void handleMouseRelease(); |
| 127 | 127 |
| 128 int listIndexForOption(const HTMLOptionElement&); | 128 int listIndexForOption(const HTMLOptionElement&); |
| 129 | 129 |
| 130 virtual void trace(Visitor*) override; | 130 DECLARE_VIRTUAL_TRACE(); |
| 131 | 131 |
| 132 protected: | 132 protected: |
| 133 HTMLSelectElement(Document&, HTMLFormElement*); | 133 HTMLSelectElement(Document&, HTMLFormElement*); |
| 134 | 134 |
| 135 private: | 135 private: |
| 136 virtual const AtomicString& formControlType() const override; | 136 virtual const AtomicString& formControlType() const override; |
| 137 | 137 |
| 138 virtual bool shouldShowFocusRingOnMouseFocus() const override; | 138 virtual bool shouldShowFocusRingOnMouseFocus() const override; |
| 139 | 139 |
| 140 virtual void dispatchFocusEvent(Element* oldFocusedElement, WebFocusType) ov
erride; | 140 virtual void dispatchFocusEvent(Element* oldFocusedElement, WebFocusType) ov
erride; |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 bool m_multiple; | 228 bool m_multiple; |
| 229 bool m_activeSelectionState; | 229 bool m_activeSelectionState; |
| 230 mutable bool m_shouldRecalcListItems; | 230 mutable bool m_shouldRecalcListItems; |
| 231 int m_suggestedIndex; | 231 int m_suggestedIndex; |
| 232 bool m_isAutofilledByPreview; | 232 bool m_isAutofilledByPreview; |
| 233 }; | 233 }; |
| 234 | 234 |
| 235 } // namespace blink | 235 } // namespace blink |
| 236 | 236 |
| 237 #endif // HTMLSelectElement_h | 237 #endif // HTMLSelectElement_h |
| OLD | NEW |