| 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 1855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1866 | 1866 |
| 1867 PassRefPtr<ComputedStyle> HTMLInputElement::CustomStyleForLayoutObject() { | 1867 PassRefPtr<ComputedStyle> HTMLInputElement::CustomStyleForLayoutObject() { |
| 1868 return input_type_view_->CustomStyleForLayoutObject( | 1868 return input_type_view_->CustomStyleForLayoutObject( |
| 1869 OriginalStyleForLayoutObject()); | 1869 OriginalStyleForLayoutObject()); |
| 1870 } | 1870 } |
| 1871 | 1871 |
| 1872 void HTMLInputElement::DidNotifySubtreeInsertionsToDocument() { | 1872 void HTMLInputElement::DidNotifySubtreeInsertionsToDocument() { |
| 1873 ListAttributeTargetChanged(); | 1873 ListAttributeTargetChanged(); |
| 1874 } | 1874 } |
| 1875 | 1875 |
| 1876 AXObject* HTMLInputElement::PopupRootAXObject() { | 1876 AXObjectImpl* HTMLInputElement::PopupRootAXObject() { |
| 1877 return input_type_view_->PopupRootAXObject(); | 1877 return input_type_view_->PopupRootAXObject(); |
| 1878 } | 1878 } |
| 1879 | 1879 |
| 1880 void HTMLInputElement::EnsureFallbackContent() { | 1880 void HTMLInputElement::EnsureFallbackContent() { |
| 1881 input_type_view_->EnsureFallbackContent(); | 1881 input_type_view_->EnsureFallbackContent(); |
| 1882 } | 1882 } |
| 1883 | 1883 |
| 1884 void HTMLInputElement::EnsurePrimaryContent() { | 1884 void HTMLInputElement::EnsurePrimaryContent() { |
| 1885 input_type_view_->EnsurePrimaryContent(); | 1885 input_type_view_->EnsurePrimaryContent(); |
| 1886 } | 1886 } |
| 1887 | 1887 |
| 1888 bool HTMLInputElement::HasFallbackContent() const { | 1888 bool HTMLInputElement::HasFallbackContent() const { |
| 1889 return input_type_view_->HasFallbackContent(); | 1889 return input_type_view_->HasFallbackContent(); |
| 1890 } | 1890 } |
| 1891 | 1891 |
| 1892 void HTMLInputElement::SetFilesFromPaths(const Vector<String>& paths) { | 1892 void HTMLInputElement::SetFilesFromPaths(const Vector<String>& paths) { |
| 1893 return input_type_->SetFilesFromPaths(paths); | 1893 return input_type_->SetFilesFromPaths(paths); |
| 1894 } | 1894 } |
| 1895 | 1895 |
| 1896 } // namespace blink | 1896 } // namespace blink |
| OLD | NEW |