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) 2010 Google Inc. All rights reserved. | 8 * Copyright (C) 2010 Google Inc. All rights reserved. |
9 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 9 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
10 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 10 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
(...skipping 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1309 KURL HTMLInputElement::src() const | 1309 KURL HTMLInputElement::src() const |
1310 { | 1310 { |
1311 return document().completeURL(fastGetAttribute(srcAttr)); | 1311 return document().completeURL(fastGetAttribute(srcAttr)); |
1312 } | 1312 } |
1313 | 1313 |
1314 FileList* HTMLInputElement::files() | 1314 FileList* HTMLInputElement::files() |
1315 { | 1315 { |
1316 return m_inputType->files(); | 1316 return m_inputType->files(); |
1317 } | 1317 } |
1318 | 1318 |
1319 void HTMLInputElement::setFiles(PassRefPtr<FileList> files) | 1319 void HTMLInputElement::setFiles(PassRefPtrWillBeRawPtr<FileList> files) |
1320 { | 1320 { |
1321 m_inputType->setFiles(files); | 1321 m_inputType->setFiles(files); |
1322 } | 1322 } |
1323 | 1323 |
1324 bool HTMLInputElement::receiveDroppedFiles(const DragData* dragData) | 1324 bool HTMLInputElement::receiveDroppedFiles(const DragData* dragData) |
1325 { | 1325 { |
1326 return m_inputType->receiveDroppedFiles(dragData); | 1326 return m_inputType->receiveDroppedFiles(dragData); |
1327 } | 1327 } |
1328 | 1328 |
1329 String HTMLInputElement::droppedFileSystemId() | 1329 String HTMLInputElement::droppedFileSystemId() |
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1868 } | 1868 } |
1869 | 1869 |
1870 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 1870 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
1871 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer() | 1871 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer() |
1872 { | 1872 { |
1873 return m_inputTypeView->customStyleForRenderer(originalStyleForRenderer()); | 1873 return m_inputTypeView->customStyleForRenderer(originalStyleForRenderer()); |
1874 } | 1874 } |
1875 #endif | 1875 #endif |
1876 | 1876 |
1877 } // namespace | 1877 } // namespace |
OLD | NEW |