| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 #include "core/page/Chrome.h" | 69 #include "core/page/Chrome.h" |
| 70 #include "core/page/ChromeClient.h" | 70 #include "core/page/ChromeClient.h" |
| 71 #include "core/rendering/RenderTextControlSingleLine.h" | 71 #include "core/rendering/RenderTextControlSingleLine.h" |
| 72 #include "core/rendering/RenderTheme.h" | 72 #include "core/rendering/RenderTheme.h" |
| 73 #include "platform/DateTimeChooser.h" | 73 #include "platform/DateTimeChooser.h" |
| 74 #include "platform/Language.h" | 74 #include "platform/Language.h" |
| 75 #include "platform/PlatformMouseEvent.h" | 75 #include "platform/PlatformMouseEvent.h" |
| 76 #include "platform/text/PlatformLocale.h" | 76 #include "platform/text/PlatformLocale.h" |
| 77 #include "wtf/MathExtras.h" | 77 #include "wtf/MathExtras.h" |
| 78 | 78 |
| 79 using namespace std; | |
| 80 | |
| 81 namespace WebCore { | 79 namespace WebCore { |
| 82 | 80 |
| 83 using namespace HTMLNames; | 81 using namespace HTMLNames; |
| 84 | 82 |
| 85 class ListAttributeTargetObserver : public IdTargetObserver { | 83 class ListAttributeTargetObserver : public IdTargetObserver { |
| 86 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; | 84 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; |
| 87 public: | 85 public: |
| 88 static PassOwnPtrWillBeRawPtr<ListAttributeTargetObserver> create(const Atom
icString& id, HTMLInputElement*); | 86 static PassOwnPtrWillBeRawPtr<ListAttributeTargetObserver> create(const Atom
icString& id, HTMLInputElement*); |
| 89 virtual void trace(Visitor*) OVERRIDE; | 87 virtual void trace(Visitor*) OVERRIDE; |
| 90 virtual void idTargetChanged() OVERRIDE; | 88 virtual void idTargetChanged() OVERRIDE; |
| (...skipping 1768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1859 return m_inputTypeView->customStyleForRenderer(originalStyleForRenderer()); | 1857 return m_inputTypeView->customStyleForRenderer(originalStyleForRenderer()); |
| 1860 } | 1858 } |
| 1861 #endif | 1859 #endif |
| 1862 | 1860 |
| 1863 bool HTMLInputElement::shouldDispatchFormControlChangeEvent(String& oldValue, St
ring& newValue) | 1861 bool HTMLInputElement::shouldDispatchFormControlChangeEvent(String& oldValue, St
ring& newValue) |
| 1864 { | 1862 { |
| 1865 return m_inputType->shouldDispatchFormControlChangeEvent(oldValue, newValue)
; | 1863 return m_inputType->shouldDispatchFormControlChangeEvent(oldValue, newValue)
; |
| 1866 } | 1864 } |
| 1867 | 1865 |
| 1868 } // namespace | 1866 } // namespace |
| OLD | NEW |