| 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 * | 9 * |
| 10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
| (...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 547 String InputType::convertFromVisibleValue(const String& visibleValue) const | 547 String InputType::convertFromVisibleValue(const String& visibleValue) const |
| 548 { | 548 { |
| 549 return visibleValue; | 549 return visibleValue; |
| 550 } | 550 } |
| 551 | 551 |
| 552 bool InputType::isAcceptableValue(const String&) | 552 bool InputType::isAcceptableValue(const String&) |
| 553 { | 553 { |
| 554 return true; | 554 return true; |
| 555 } | 555 } |
| 556 | 556 |
| 557 String InputType::sanitizeValue(const String& proposedValue) | 557 String InputType::sanitizeValue(const String& proposedValue) const |
| 558 { | 558 { |
| 559 return proposedValue; | 559 return proposedValue; |
| 560 } | 560 } |
| 561 | 561 |
| 562 bool InputType::hasUnacceptableValue() | 562 bool InputType::hasUnacceptableValue() |
| 563 { | 563 { |
| 564 return false; | 564 return false; |
| 565 } | 565 } |
| 566 | 566 |
| 567 void InputType::receiveDroppedFiles(const Vector<String>&) | 567 void InputType::receiveDroppedFiles(const Vector<String>&) |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 850 | 850 |
| 851 const AtomicString& week() | 851 const AtomicString& week() |
| 852 { | 852 { |
| 853 DEFINE_STATIC_LOCAL(AtomicString, name, ("week")); | 853 DEFINE_STATIC_LOCAL(AtomicString, name, ("week")); |
| 854 return name; | 854 return name; |
| 855 } | 855 } |
| 856 | 856 |
| 857 } // namespace WebCore::InputTypeNames | 857 } // namespace WebCore::InputTypeNames |
| 858 | 858 |
| 859 } // namespace WebCore | 859 } // namespace WebCore |
| OLD | NEW |