| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 bool InputTypeView::shouldSubmitImplicitly(Event* event) | 90 bool InputTypeView::shouldSubmitImplicitly(Event* event) |
| 91 { | 91 { |
| 92 return false; | 92 return false; |
| 93 } | 93 } |
| 94 | 94 |
| 95 PassRefPtrWillBeRawPtr<HTMLFormElement> InputTypeView::formForSubmission() const | 95 PassRefPtrWillBeRawPtr<HTMLFormElement> InputTypeView::formForSubmission() const |
| 96 { | 96 { |
| 97 return element().form(); | 97 return element().form(); |
| 98 } | 98 } |
| 99 | 99 |
| 100 LayoutObject* InputTypeView::createLayoutObject(const LayoutStyle& style) const | 100 LayoutObject* InputTypeView::createLayoutObject(const ComputedStyle& style) cons
t |
| 101 { | 101 { |
| 102 return LayoutObject::createObject(&element(), style); | 102 return LayoutObject::createObject(&element(), style); |
| 103 } | 103 } |
| 104 | 104 |
| 105 PassRefPtr<LayoutStyle> InputTypeView::customStyleForLayoutObject(PassRefPtr<Lay
outStyle> originalStyle) | 105 PassRefPtr<ComputedStyle> InputTypeView::customStyleForLayoutObject(PassRefPtr<C
omputedStyle> originalStyle) |
| 106 { | 106 { |
| 107 return originalStyle; | 107 return originalStyle; |
| 108 } | 108 } |
| 109 | 109 |
| 110 void InputTypeView::blur() | 110 void InputTypeView::blur() |
| 111 { | 111 { |
| 112 element().defaultBlur(); | 112 element().defaultBlur(); |
| 113 } | 113 } |
| 114 | 114 |
| 115 bool InputTypeView::hasCustomFocusLogic() const | 115 bool InputTypeView::hasCustomFocusLogic() const |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 { | 226 { |
| 227 return nullptr; | 227 return nullptr; |
| 228 } | 228 } |
| 229 | 229 |
| 230 DEFINE_TRACE(ClickHandlingState) | 230 DEFINE_TRACE(ClickHandlingState) |
| 231 { | 231 { |
| 232 visitor->trace(checkedRadioButton); | 232 visitor->trace(checkedRadioButton); |
| 233 } | 233 } |
| 234 | 234 |
| 235 } // namespace blink | 235 } // namespace blink |
| OLD | NEW |