| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/input/synthetic_gesture_target_aura.h" | 5 #include "content/browser/renderer_host/input/synthetic_gesture_target_aura.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include "content/browser/renderer_host/render_widget_host_impl.h" | 9 #include "content/browser/renderer_host/render_widget_host_impl.h" |
| 10 #include "content/browser/renderer_host/render_widget_host_view_aura.h" | 10 #include "content/browser/renderer_host/render_widget_host_view_aura.h" |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 case blink::WebMouseEvent::Button::Left: | 117 case blink::WebMouseEvent::Button::Left: |
| 118 return ui::EF_LEFT_MOUSE_BUTTON; | 118 return ui::EF_LEFT_MOUSE_BUTTON; |
| 119 | 119 |
| 120 case blink::WebMouseEvent::Button::Middle: | 120 case blink::WebMouseEvent::Button::Middle: |
| 121 return ui::EF_MIDDLE_MOUSE_BUTTON; | 121 return ui::EF_MIDDLE_MOUSE_BUTTON; |
| 122 | 122 |
| 123 case blink::WebMouseEvent::Button::Right: | 123 case blink::WebMouseEvent::Button::Right: |
| 124 return ui::EF_RIGHT_MOUSE_BUTTON; | 124 return ui::EF_RIGHT_MOUSE_BUTTON; |
| 125 | 125 |
| 126 default: | 126 default: |
| 127 NOTREACHED(); | 127 break; |
| 128 } | 128 } |
| 129 | 129 |
| 130 return 0; | 130 return 0; |
| 131 } | 131 } |
| 132 | 132 |
| 133 } // namespace | 133 } // namespace |
| 134 | 134 |
| 135 void SyntheticGestureTargetAura::DispatchWebMouseEventToPlatform( | 135 void SyntheticGestureTargetAura::DispatchWebMouseEventToPlatform( |
| 136 const blink::WebMouseEvent& web_mouse, | 136 const blink::WebMouseEvent& web_mouse, |
| 137 const ui::LatencyInfo& latency_info) { | 137 const ui::LatencyInfo& latency_info) { |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 ->min_distance_for_pinch_scroll_in_pixels(); | 170 ->min_distance_for_pinch_scroll_in_pixels(); |
| 171 } | 171 } |
| 172 | 172 |
| 173 aura::Window* SyntheticGestureTargetAura::GetWindow() const { | 173 aura::Window* SyntheticGestureTargetAura::GetWindow() const { |
| 174 aura::Window* window = render_widget_host()->GetView()->GetNativeView(); | 174 aura::Window* window = render_widget_host()->GetView()->GetNativeView(); |
| 175 DCHECK(window); | 175 DCHECK(window); |
| 176 return window; | 176 return window; |
| 177 } | 177 } |
| 178 | 178 |
| 179 } // namespace content | 179 } // namespace content |
| OLD | NEW |