Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1083)

Unified Diff: content/browser/frame_host/render_frame_host_impl.cc

Issue 2370393002: Extracting placeholder information from Webkit to Blimp (Closed)
Patch Set: Switched from ViewMsg_* to FrameMsg_* Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 c1950f570421d496b204c4bbc309e6080e3d3f8c..20cf22a35d355491d52776f362fdbed7ec21d722 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/url_constants.h"
@@ -385,6 +386,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.
@@ -690,6 +695,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)
@@ -1661,6 +1668,23 @@ 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) {
+ DCHECK(form_field_data_callbacks_.find(request_id) !=
+ form_field_data_callbacks_.end());
+ form_field_data_callbacks_[request_id].Run(field_data);
+ form_field_data_callbacks_.erase(request_id);
+}
+
void RenderFrameHostImpl::OnDidAccessInitialDocument() {
delegate_->DidAccessInitialDocument();
}

Powered by Google App Engine
This is Rietveld 408576698