Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / forms / InputTypeView.cpp
index 8e8aee3..34c5a4c 100644 (file)
@@ -33,7 +33,7 @@
 #include "core/html/HTMLInputElement.h"
 #include "core/rendering/RenderObject.h"
 
-namespace WebCore {
+namespace blink {
 
 PassRefPtrWillBeRawPtr<InputTypeView> InputTypeView::create(HTMLInputElement& input)
 {
@@ -125,6 +125,10 @@ void InputTypeView::handleBlurEvent()
 {
 }
 
+void InputTypeView::handleFocusInEvent(Element*, FocusType)
+{
+}
+
 void InputTypeView::startResourceLoading()
 {
 }
@@ -218,9 +222,14 @@ void InputTypeView::updatePlaceholderText()
 {
 }
 
+AXObject* InputTypeView::popupRootAXObject()
+{
+    return 0;
+}
+
 void ClickHandlingState::trace(Visitor* visitor)
 {
     visitor->trace(checkedRadioButton);
 }
 
-} // namespace WebCore
+} // namespace blink