| 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 | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All |
| 6 * rights reserved. | 6 * rights reserved. |
| 7 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 7 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
| 8 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) | 8 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) |
| 9 * Copyright (C) 2010 Google Inc. All rights reserved. | 9 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 10 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. | 10 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. |
| (...skipping 1866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1877 | 1877 |
| 1878 PassRefPtr<ComputedStyle> HTMLInputElement::CustomStyleForLayoutObject() { | 1878 PassRefPtr<ComputedStyle> HTMLInputElement::CustomStyleForLayoutObject() { |
| 1879 return input_type_view_->CustomStyleForLayoutObject( | 1879 return input_type_view_->CustomStyleForLayoutObject( |
| 1880 OriginalStyleForLayoutObject()); | 1880 OriginalStyleForLayoutObject()); |
| 1881 } | 1881 } |
| 1882 | 1882 |
| 1883 void HTMLInputElement::DidNotifySubtreeInsertionsToDocument() { | 1883 void HTMLInputElement::DidNotifySubtreeInsertionsToDocument() { |
| 1884 ListAttributeTargetChanged(); | 1884 ListAttributeTargetChanged(); |
| 1885 } | 1885 } |
| 1886 | 1886 |
| 1887 AXObjectImpl* HTMLInputElement::PopupRootAXObject() { | 1887 AXObject* HTMLInputElement::PopupRootAXObject() { |
| 1888 return input_type_view_->PopupRootAXObject(); | 1888 return input_type_view_->PopupRootAXObject(); |
| 1889 } | 1889 } |
| 1890 | 1890 |
| 1891 void HTMLInputElement::EnsureFallbackContent() { | 1891 void HTMLInputElement::EnsureFallbackContent() { |
| 1892 input_type_view_->EnsureFallbackContent(); | 1892 input_type_view_->EnsureFallbackContent(); |
| 1893 } | 1893 } |
| 1894 | 1894 |
| 1895 void HTMLInputElement::EnsurePrimaryContent() { | 1895 void HTMLInputElement::EnsurePrimaryContent() { |
| 1896 input_type_view_->EnsurePrimaryContent(); | 1896 input_type_view_->EnsurePrimaryContent(); |
| 1897 } | 1897 } |
| 1898 | 1898 |
| 1899 bool HTMLInputElement::HasFallbackContent() const { | 1899 bool HTMLInputElement::HasFallbackContent() const { |
| 1900 return input_type_view_->HasFallbackContent(); | 1900 return input_type_view_->HasFallbackContent(); |
| 1901 } | 1901 } |
| 1902 | 1902 |
| 1903 void HTMLInputElement::SetFilesFromPaths(const Vector<String>& paths) { | 1903 void HTMLInputElement::SetFilesFromPaths(const Vector<String>& paths) { |
| 1904 return input_type_->SetFilesFromPaths(paths); | 1904 return input_type_->SetFilesFromPaths(paths); |
| 1905 } | 1905 } |
| 1906 | 1906 |
| 1907 } // namespace blink | 1907 } // namespace blink |
| OLD | NEW |