| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 #include "core/html/forms/DateTimeChooser.h" | 65 #include "core/html/forms/DateTimeChooser.h" |
| 66 #include "core/html/forms/FileInputType.h" | 66 #include "core/html/forms/FileInputType.h" |
| 67 #include "core/html/forms/FormController.h" | 67 #include "core/html/forms/FormController.h" |
| 68 #include "core/html/forms/InputType.h" | 68 #include "core/html/forms/InputType.h" |
| 69 #include "core/html/forms/SearchInputType.h" | 69 #include "core/html/forms/SearchInputType.h" |
| 70 #include "core/html/parser/HTMLParserIdioms.h" | 70 #include "core/html/parser/HTMLParserIdioms.h" |
| 71 #include "core/layout/LayoutObject.h" | 71 #include "core/layout/LayoutObject.h" |
| 72 #include "core/layout/LayoutTheme.h" | 72 #include "core/layout/LayoutTheme.h" |
| 73 #include "core/page/ChromeClient.h" | 73 #include "core/page/ChromeClient.h" |
| 74 #include "platform/Language.h" | 74 #include "platform/Language.h" |
| 75 #include "platform/PlatformMouseEvent.h" | |
| 76 #include "platform/RuntimeEnabledFeatures.h" | 75 #include "platform/RuntimeEnabledFeatures.h" |
| 77 #include "platform/text/PlatformLocale.h" | 76 #include "platform/text/PlatformLocale.h" |
| 78 #include "wtf/MathExtras.h" | 77 #include "wtf/MathExtras.h" |
| 79 | 78 |
| 80 namespace blink { | 79 namespace blink { |
| 81 | 80 |
| 82 using ValueMode = InputType::ValueMode; | 81 using ValueMode = InputType::ValueMode; |
| 83 using namespace HTMLNames; | 82 using namespace HTMLNames; |
| 84 | 83 |
| 85 class ListAttributeTargetObserver : public IdTargetObserver { | 84 class ListAttributeTargetObserver : public IdTargetObserver { |
| (...skipping 1801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1887 | 1886 |
| 1888 bool HTMLInputElement::hasFallbackContent() const { | 1887 bool HTMLInputElement::hasFallbackContent() const { |
| 1889 return m_inputTypeView->hasFallbackContent(); | 1888 return m_inputTypeView->hasFallbackContent(); |
| 1890 } | 1889 } |
| 1891 | 1890 |
| 1892 void HTMLInputElement::setFilesFromPaths(const Vector<String>& paths) { | 1891 void HTMLInputElement::setFilesFromPaths(const Vector<String>& paths) { |
| 1893 return m_inputType->setFilesFromPaths(paths); | 1892 return m_inputType->setFilesFromPaths(paths); |
| 1894 } | 1893 } |
| 1895 | 1894 |
| 1896 } // namespace blink | 1895 } // namespace blink |
| OLD | NEW |