| 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) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 6 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 | 191 |
| 192 Vector<String> acceptMIMETypes(); | 192 Vector<String> acceptMIMETypes(); |
| 193 Vector<String> acceptFileExtensions(); | 193 Vector<String> acceptFileExtensions(); |
| 194 const AtomicString& alt() const; | 194 const AtomicString& alt() const; |
| 195 | 195 |
| 196 void setSize(unsigned); | 196 void setSize(unsigned); |
| 197 void setSize(unsigned, ExceptionState&); | 197 void setSize(unsigned, ExceptionState&); |
| 198 | 198 |
| 199 KURL src() const; | 199 KURL src() const; |
| 200 | 200 |
| 201 virtual int maxLength() const OVERRIDE FINAL; | 201 int maxLength() const; |
| 202 void setMaxLength(int, ExceptionState&); | 202 void setMaxLength(int, ExceptionState&); |
| 203 | 203 |
| 204 bool multiple() const; | 204 bool multiple() const; |
| 205 | 205 |
| 206 FileList* files(); | 206 FileList* files(); |
| 207 void setFiles(PassRefPtr<FileList>); | 207 void setFiles(PassRefPtr<FileList>); |
| 208 | 208 |
| 209 // Returns true if the given DragData has more than one dropped files. | 209 // Returns true if the given DragData has more than one dropped files. |
| 210 bool receiveDroppedFiles(const DragData*); | 210 bool receiveDroppedFiles(const DragData*); |
| 211 | 211 |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 // that it lives as long as its owning element lives. If we move the loader
into | 392 // that it lives as long as its owning element lives. If we move the loader
into |
| 393 // the ImageInput object we may delete the loader while this element lives o
n. | 393 // the ImageInput object we may delete the loader while this element lives o
n. |
| 394 OwnPtr<HTMLImageLoader> m_imageLoader; | 394 OwnPtr<HTMLImageLoader> m_imageLoader; |
| 395 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; | 395 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; |
| 396 }; | 396 }; |
| 397 | 397 |
| 398 DEFINE_NODE_TYPE_CASTS(HTMLInputElement, hasTagName(HTMLNames::inputTag)); | 398 DEFINE_NODE_TYPE_CASTS(HTMLInputElement, hasTagName(HTMLNames::inputTag)); |
| 399 | 399 |
| 400 } //namespace | 400 } //namespace |
| 401 #endif | 401 #endif |
| OLD | NEW |