| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
| 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
| 7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) | 7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) |
| 8 * Copyright (C) 2009, 2010, 2011, 2012 Google Inc. All rights reserved. | 8 * Copyright (C) 2009, 2010, 2011, 2012 Google Inc. All rights reserved. |
| 9 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 9 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 10 * | 10 * |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 } | 118 } |
| 119 | 119 |
| 120 void InputTypeView::handleFocusEvent(Element*, FocusType) | 120 void InputTypeView::handleFocusEvent(Element*, FocusType) |
| 121 { | 121 { |
| 122 } | 122 } |
| 123 | 123 |
| 124 void InputTypeView::handleBlurEvent() | 124 void InputTypeView::handleBlurEvent() |
| 125 { | 125 { |
| 126 } | 126 } |
| 127 | 127 |
| 128 void InputTypeView::handleFocusInEvent(Element*, FocusType) |
| 129 { |
| 130 } |
| 131 |
| 128 void InputTypeView::startResourceLoading() | 132 void InputTypeView::startResourceLoading() |
| 129 { | 133 { |
| 130 } | 134 } |
| 131 | 135 |
| 132 void InputTypeView::closePopupView() | 136 void InputTypeView::closePopupView() |
| 133 { | 137 { |
| 134 } | 138 } |
| 135 | 139 |
| 136 void InputTypeView::createShadowSubtree() | 140 void InputTypeView::createShadowSubtree() |
| 137 { | 141 { |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 { | 226 { |
| 223 return 0; | 227 return 0; |
| 224 } | 228 } |
| 225 | 229 |
| 226 void ClickHandlingState::trace(Visitor* visitor) | 230 void ClickHandlingState::trace(Visitor* visitor) |
| 227 { | 231 { |
| 228 visitor->trace(checkedRadioButton); | 232 visitor->trace(checkedRadioButton); |
| 229 } | 233 } |
| 230 | 234 |
| 231 } // namespace blink | 235 } // namespace blink |
| OLD | NEW |