Chromium Code Reviews| 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 4bbb482a128f7e38a442e9e70b217e17c2595a4b..dec63ebf0ee9049e0b1e0fae24813b6b0e1db6c2 100644 |
| --- a/content/browser/frame_host/render_frame_host_impl.cc |
| +++ b/content/browser/frame_host/render_frame_host_impl.cc |
| @@ -86,6 +86,7 @@ |
| #include "content/public/common/content_switches.h" |
| #include "content/public/common/file_chooser_file_info.h" |
| #include "content/public/common/file_chooser_params.h" |
| +#include "content/public/common/form_field_data.h" |
| #include "content/public/common/isolated_world_ids.h" |
| #include "content/public/common/service_manager_connection.h" |
| #include "content/public/common/service_names.h" |
| @@ -388,6 +389,10 @@ RenderFrameHostImpl::~RenderFrameHostImpl() { |
| for (const auto& iter : visual_state_callbacks_) |
| iter.second.Run(false); |
| + // Run callbacks for the outstanding text input info requests, if any. |
| + for (const auto& iter : form_field_data_callbacks_) |
| + iter.second.Run(FormFieldData()); |
| + |
| if (render_widget_host_ && |
| render_widget_host_->owned_by_render_frame_host()) { |
| // Shutdown causes the RenderWidgetHost to delete itself. |
| @@ -694,6 +699,8 @@ bool RenderFrameHostImpl::OnMessageReceived(const IPC::Message &msg) { |
| IPC_MESSAGE_HANDLER(FrameHostMsg_DispatchLoad, OnDispatchLoad) |
| IPC_MESSAGE_HANDLER(FrameHostMsg_TextSurroundingSelectionResponse, |
| OnTextSurroundingSelectionResponse) |
| + IPC_MESSAGE_HANDLER(FrameHostMsg_FocusedFormFieldDataResponse, |
| + OnFocusedFormFieldDataResponse) |
| IPC_MESSAGE_HANDLER(AccessibilityHostMsg_Events, OnAccessibilityEvents) |
| IPC_MESSAGE_HANDLER(AccessibilityHostMsg_LocationChanges, |
| OnAccessibilityLocationChanges) |
| @@ -1475,7 +1482,11 @@ void RenderFrameHostImpl::OnRenderProcessGone(int status, int exit_code) { |
| // since we're never going to get a response from this renderer. |
| for (const auto& iter : ax_tree_snapshot_callbacks_) |
| iter.second.Run(ui::AXTreeUpdate()); |
| + |
| ax_tree_snapshot_callbacks_.clear(); |
| + javascript_callbacks_.clear(); |
| + visual_state_callbacks_.clear(); |
| + form_field_data_callbacks_.clear(); |
| // Ensure that future remote interface requests are associated with the new |
| // process's channel. |
| @@ -1663,6 +1674,26 @@ void RenderFrameHostImpl::OnTextSurroundingSelectionResponse( |
| text_surrounding_selection_callback_.Reset(); |
| } |
| +void RenderFrameHostImpl::RequestFocusedFormFieldData( |
| + FormFieldDataCallback& callback) { |
| + static int next_id = 1; |
| + int request_id = ++next_id; |
| + form_field_data_callbacks_[request_id] = callback; |
| + Send(new FrameMsg_FocusedFormFieldDataRequest(GetRoutingID(), request_id)); |
| +} |
| + |
| +void RenderFrameHostImpl::OnFocusedFormFieldDataResponse( |
| + int request_id, |
| + const FormFieldData& field_data) { |
| + auto it = form_field_data_callbacks_.find(request_id); |
| + if (it != form_field_data_callbacks_.end()) { |
| + it->second.Run(field_data); |
| + form_field_data_callbacks_.erase(it); |
| + } else { |
| + NOTREACHED() << "Received form field data response for unknown request"; |
|
Charlie Reis
2016/11/16 00:18:00
Normally we omit the NOTREACHED as well-- it's kno
shaktisahu
2016/11/16 20:26:58
Ok, I will remove the else block.
|
| + } |
| +} |
| + |
| void RenderFrameHostImpl::OnDidAccessInitialDocument() { |
| delegate_->DidAccessInitialDocument(); |
| } |