Index: content/browser/frame_host/render_frame_host_impl.cc |
diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc |
index 0baac98336ac1f7b23bf4bccf6966d26b15f6817..fe9b11067a9ccadd7297a0c1a20303fdb837e070 100644 |
--- a/content/browser/frame_host/render_frame_host_impl.cc |
+++ b/content/browser/frame_host/render_frame_host_impl.cc |
@@ -434,6 +434,11 @@ void RenderFrameHostImpl::AccessibilitySetTextSelection( |
routing_id_, object_id, start_offset, end_offset)); |
} |
+void RenderFrameHostImpl::AccessibilitySetValue( |
+ int object_id, const base::string16& value) { |
+ Send(new AccessibilityMsg_SetValue(routing_id_, object_id, value)); |
+} |
+ |
bool RenderFrameHostImpl::AccessibilityViewHasFocus() const { |
RenderWidgetHostView* view = render_view_host_->GetView(); |
if (view) |