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

Side by Side Diff: content/browser/renderer_host/render_widget_host_impl.cc

Issue 23416003: Add content::RenderWidgetHost::MouseEventCallback (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use a callback instead of a single-method interface Created 7 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/renderer_host/render_widget_host_impl.h" 5 #include "content/browser/renderer_host/render_widget_host_impl.h"
6 6
7 #include <math.h> 7 #include <math.h>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/auto_reset.h" 10 #include "base/auto_reset.h"
(...skipping 998 matching lines...) Expand 10 before | Expand all | Expand 10 after
1009 void RenderWidgetHostImpl::ForwardMouseEvent(const WebMouseEvent& mouse_event) { 1009 void RenderWidgetHostImpl::ForwardMouseEvent(const WebMouseEvent& mouse_event) {
1010 ForwardMouseEventWithLatencyInfo( 1010 ForwardMouseEventWithLatencyInfo(
1011 MouseEventWithLatencyInfo(mouse_event, 1011 MouseEventWithLatencyInfo(mouse_event,
1012 CreateRWHLatencyInfoIfNotExist(NULL))); 1012 CreateRWHLatencyInfoIfNotExist(NULL)));
1013 } 1013 }
1014 1014
1015 void RenderWidgetHostImpl::ForwardMouseEventWithLatencyInfo( 1015 void RenderWidgetHostImpl::ForwardMouseEventWithLatencyInfo(
1016 const MouseEventWithLatencyInfo& mouse_event) { 1016 const MouseEventWithLatencyInfo& mouse_event) {
1017 TRACE_EVENT2("input", "RenderWidgetHostImpl::ForwardMouseEvent", 1017 TRACE_EVENT2("input", "RenderWidgetHostImpl::ForwardMouseEvent",
1018 "x", mouse_event.event.x, "y", mouse_event.event.y); 1018 "x", mouse_event.event.x, "y", mouse_event.event.y);
1019
1020 // First, let mouse event callbacks take a shot at handling the event. If a
1021 // callback handles the event, it should not be propagated to the renderer.
1022 if (MouseEventCallbacksHandleEvent(mouse_event.event))
jam 2013/08/27 16:17:53 nit: given the size of this function, why not just
wdzierzanowski 2013/08/27 19:29:51 In fact, I didn't care much for this being a separ
1023 return;
1024
1019 input_router_->SendMouseEvent(mouse_event); 1025 input_router_->SendMouseEvent(mouse_event);
1020 } 1026 }
1021 1027
1022 void RenderWidgetHostImpl::OnPointerEventActivate() { 1028 void RenderWidgetHostImpl::OnPointerEventActivate() {
1023 } 1029 }
1024 1030
1025 void RenderWidgetHostImpl::ForwardWheelEvent( 1031 void RenderWidgetHostImpl::ForwardWheelEvent(
1026 const WebMouseWheelEvent& wheel_event) { 1032 const WebMouseWheelEvent& wheel_event) {
1027 ForwardWheelEventWithLatencyInfo( 1033 ForwardWheelEventWithLatencyInfo(
1028 MouseWheelEventWithLatencyInfo(wheel_event, 1034 MouseWheelEventWithLatencyInfo(wheel_event,
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
1127 keyboard_listeners_.AddObserver(listener); 1133 keyboard_listeners_.AddObserver(listener);
1128 } 1134 }
1129 1135
1130 void RenderWidgetHostImpl::RemoveKeyboardListener( 1136 void RenderWidgetHostImpl::RemoveKeyboardListener(
1131 KeyboardListener* listener) { 1137 KeyboardListener* listener) {
1132 // Ensure that the element is actually an observer. 1138 // Ensure that the element is actually an observer.
1133 DCHECK(keyboard_listeners_.HasObserver(listener)); 1139 DCHECK(keyboard_listeners_.HasObserver(listener));
1134 keyboard_listeners_.RemoveObserver(listener); 1140 keyboard_listeners_.RemoveObserver(listener);
1135 } 1141 }
1136 1142
1143 void RenderWidgetHostImpl::AddMouseEventCallback(
1144 const MouseEventCallback& callback) {
1145 mouse_event_callbacks_.push_back(callback);
1146 }
1147
1148 void RenderWidgetHostImpl::RemoveMouseEventCallback(
1149 const MouseEventCallback& callback) {
1150 for (size_t i = 0; i < mouse_event_callbacks_.size(); ++i) {
1151 if (mouse_event_callbacks_[i].Equals(callback)) {
1152 mouse_event_callbacks_.erase(mouse_event_callbacks_.begin() + i);
1153 return;
1154 }
1155 }
1156 }
1157
1137 void RenderWidgetHostImpl::GetWebScreenInfo(WebKit::WebScreenInfo* result) { 1158 void RenderWidgetHostImpl::GetWebScreenInfo(WebKit::WebScreenInfo* result) {
1138 TRACE_EVENT0("renderer_host", "RenderWidgetHostImpl::GetWebScreenInfo"); 1159 TRACE_EVENT0("renderer_host", "RenderWidgetHostImpl::GetWebScreenInfo");
1139 if (GetView()) 1160 if (GetView())
1140 static_cast<RenderWidgetHostViewPort*>(GetView())->GetScreenInfo(result); 1161 static_cast<RenderWidgetHostViewPort*>(GetView())->GetScreenInfo(result);
1141 else 1162 else
1142 RenderWidgetHostViewPort::GetDefaultScreenInfo(result); 1163 RenderWidgetHostViewPort::GetDefaultScreenInfo(result);
1143 screen_info_out_of_date_ = false; 1164 screen_info_out_of_date_ = false;
1144 } 1165 }
1145 1166
1146 const NativeWebKeyboardEvent* 1167 const NativeWebKeyboardEvent*
(...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after
1892 ObserverList<KeyboardListener>::Iterator it(keyboard_listeners_); 1913 ObserverList<KeyboardListener>::Iterator it(keyboard_listeners_);
1893 KeyboardListener* listener; 1914 KeyboardListener* listener;
1894 while ((listener = it.GetNext()) != NULL) { 1915 while ((listener = it.GetNext()) != NULL) {
1895 if (listener->HandleKeyPressEvent(event)) 1916 if (listener->HandleKeyPressEvent(event))
1896 return true; 1917 return true;
1897 } 1918 }
1898 1919
1899 return false; 1920 return false;
1900 } 1921 }
1901 1922
1923 bool RenderWidgetHostImpl::MouseEventCallbacksHandleEvent(
1924 const WebMouseEvent& event) {
1925 for (size_t i = 0; i < mouse_event_callbacks_.size(); ++i) {
1926 if (mouse_event_callbacks_[i].Run(event))
1927 return true;
1928 }
1929
1930 return false;
1931 }
1932
1902 InputEventAckState RenderWidgetHostImpl::FilterInputEvent( 1933 InputEventAckState RenderWidgetHostImpl::FilterInputEvent(
1903 const WebKit::WebInputEvent& event, const ui::LatencyInfo& latency_info) { 1934 const WebKit::WebInputEvent& event, const ui::LatencyInfo& latency_info) {
1904 if (overscroll_controller() && 1935 if (overscroll_controller() &&
1905 !overscroll_controller()->WillDispatchEvent(event, latency_info)) { 1936 !overscroll_controller()->WillDispatchEvent(event, latency_info)) {
1906 return INPUT_EVENT_ACK_STATE_UNKNOWN; 1937 return INPUT_EVENT_ACK_STATE_UNKNOWN;
1907 } 1938 }
1908 1939
1909 return view_ ? view_->FilterInputEvent(event) 1940 return view_ ? view_->FilterInputEvent(event)
1910 : INPUT_EVENT_ACK_STATE_NOT_CONSUMED; 1941 : INPUT_EVENT_ACK_STATE_NOT_CONSUMED;
1911 } 1942 }
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
2486 int process_id = (b->first.second >> 32) & 0xffffffff; 2517 int process_id = (b->first.second >> 32) & 0xffffffff;
2487 RenderWidgetHost* rwh = 2518 RenderWidgetHost* rwh =
2488 RenderWidgetHost::FromID(process_id, routing_id); 2519 RenderWidgetHost::FromID(process_id, routing_id);
2489 if (!rwh) 2520 if (!rwh)
2490 continue; 2521 continue;
2491 RenderWidgetHostImpl::From(rwh)->FrameSwapped(latency_info); 2522 RenderWidgetHostImpl::From(rwh)->FrameSwapped(latency_info);
2492 } 2523 }
2493 } 2524 }
2494 2525
2495 } // namespace content 2526 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_impl.h ('k') | content/browser/renderer_host/render_widget_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698