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 1868 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1879 | 1879 |
1880 PassRefPtr<ComputedStyle> HTMLInputElement::CustomStyleForLayoutObject() { | 1880 PassRefPtr<ComputedStyle> HTMLInputElement::CustomStyleForLayoutObject() { |
1881 return input_type_view_->CustomStyleForLayoutObject( | 1881 return input_type_view_->CustomStyleForLayoutObject( |
1882 OriginalStyleForLayoutObject()); | 1882 OriginalStyleForLayoutObject()); |
1883 } | 1883 } |
1884 | 1884 |
1885 void HTMLInputElement::DidNotifySubtreeInsertionsToDocument() { | 1885 void HTMLInputElement::DidNotifySubtreeInsertionsToDocument() { |
1886 ListAttributeTargetChanged(); | 1886 ListAttributeTargetChanged(); |
1887 } | 1887 } |
1888 | 1888 |
1889 AXObject* HTMLInputElement::PopupRootAXObject() { | 1889 AXObjectImpl* HTMLInputElement::PopupRootAXObject() { |
1890 return input_type_view_->PopupRootAXObject(); | 1890 return input_type_view_->PopupRootAXObject(); |
1891 } | 1891 } |
1892 | 1892 |
1893 void HTMLInputElement::EnsureFallbackContent() { | 1893 void HTMLInputElement::EnsureFallbackContent() { |
1894 input_type_view_->EnsureFallbackContent(); | 1894 input_type_view_->EnsureFallbackContent(); |
1895 } | 1895 } |
1896 | 1896 |
1897 void HTMLInputElement::EnsurePrimaryContent() { | 1897 void HTMLInputElement::EnsurePrimaryContent() { |
1898 input_type_view_->EnsurePrimaryContent(); | 1898 input_type_view_->EnsurePrimaryContent(); |
1899 } | 1899 } |
1900 | 1900 |
1901 bool HTMLInputElement::HasFallbackContent() const { | 1901 bool HTMLInputElement::HasFallbackContent() const { |
1902 return input_type_view_->HasFallbackContent(); | 1902 return input_type_view_->HasFallbackContent(); |
1903 } | 1903 } |
1904 | 1904 |
1905 void HTMLInputElement::SetFilesFromPaths(const Vector<String>& paths) { | 1905 void HTMLInputElement::SetFilesFromPaths(const Vector<String>& paths) { |
1906 return input_type_->SetFilesFromPaths(paths); | 1906 return input_type_->SetFilesFromPaths(paths); |
1907 } | 1907 } |
1908 | 1908 |
1909 } // namespace blink | 1909 } // namespace blink |
OLD | NEW |