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

Unified Diff: content/browser/renderer_host/render_view_host_impl.cc

Issue 14487003: Add a new pair of IPC categories for messages that need handling as input events (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: compile fixes pt 2 Created 7 years, 8 months 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/renderer_host/render_view_host_impl.cc
diff --git a/content/browser/renderer_host/render_view_host_impl.cc b/content/browser/renderer_host/render_view_host_impl.cc
index c943bbbadb0f9aae828c4c016cc29b7b191fc288..3938f1bd96483a6d753bd2d39c43f0b1e7bec016 100644
--- a/content/browser/renderer_host/render_view_host_impl.cc
+++ b/content/browser/renderer_host/render_view_host_impl.cc
@@ -36,6 +36,7 @@
#include "content/common/inter_process_time_ticks_converter.h"
#include "content/common/speech_recognition_messages.h"
#include "content/common/swapped_out_messages.h"
+#include "content/common/view_input_messages.h"
#include "content/common/view_messages.h"
#include "content/port/browser/render_view_host_delegate_view.h"
#include "content/port/browser/render_widget_host_view_port.h"
@@ -561,7 +562,8 @@ int RenderViewHostImpl::GetPendingRequestId() {
void RenderViewHostImpl::ActivateNearestFindResult(int request_id,
float x,
float y) {
- Send(new ViewMsg_ActivateNearestFindResult(GetRoutingID(), request_id, x, y));
+ Send(new ViewInputMsg_ActivateNearestFindResult(GetRoutingID(),
+ request_id, x, y));
}
void RenderViewHostImpl::RequestFindMatchRects(int current_version) {

Powered by Google App Engine
This is Rietveld 408576698