| Index: third_party/WebKit/Source/core/html/forms/ColorInputType.cpp | 
| diff --git a/third_party/WebKit/Source/core/html/forms/ColorInputType.cpp b/third_party/WebKit/Source/core/html/forms/ColorInputType.cpp | 
| index d70aeafeabb5f7c2b2bf224de80519587434806f..d7d006cb590a1be3c3a4963437892d8276c9b056 100644 | 
| --- a/third_party/WebKit/Source/core/html/forms/ColorInputType.cpp | 
| +++ b/third_party/WebKit/Source/core/html/forms/ColorInputType.cpp | 
| @@ -142,14 +142,9 @@ void ColorInputType::createShadowSubtree() { | 
| element().updateView(); | 
| } | 
|  | 
| -void ColorInputType::setValue(const String& value, | 
| -                              bool valueChanged, | 
| -                              TextFieldEventBehavior eventBehavior) { | 
| -  InputType::setValue(value, valueChanged, eventBehavior); | 
| - | 
| +void ColorInputType::didSetValue(const String&, bool valueChanged) { | 
| if (!valueChanged) | 
| return; | 
| - | 
| element().updateView(); | 
| if (m_chooser) | 
| m_chooser->setSelectedColor(valueAsColor()); | 
|  |