| OLD | NEW |
| 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/renderer/render_view_impl.h" | 5 #include "content/renderer/render_view_impl.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <cmath> | 8 #include <cmath> |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 using blink::WebHTTPBody; | 217 using blink::WebHTTPBody; |
| 218 using blink::WebHitTestResult; | 218 using blink::WebHitTestResult; |
| 219 using blink::WebIconURL; | 219 using blink::WebIconURL; |
| 220 using blink::WebImage; | 220 using blink::WebImage; |
| 221 using blink::WebInputElement; | 221 using blink::WebInputElement; |
| 222 using blink::WebInputEvent; | 222 using blink::WebInputEvent; |
| 223 using blink::WebLocalFrame; | 223 using blink::WebLocalFrame; |
| 224 using blink::WebMediaPlayerAction; | 224 using blink::WebMediaPlayerAction; |
| 225 using blink::WebMouseEvent; | 225 using blink::WebMouseEvent; |
| 226 using blink::WebNavigationPolicy; | 226 using blink::WebNavigationPolicy; |
| 227 using blink::WebNavigationType; | |
| 228 using blink::WebNode; | 227 using blink::WebNode; |
| 229 using blink::WebPluginAction; | 228 using blink::WebPluginAction; |
| 230 using blink::WebPoint; | 229 using blink::WebPoint; |
| 231 using blink::WebRect; | 230 using blink::WebRect; |
| 232 using blink::WebReferrerPolicy; | 231 using blink::WebReferrerPolicy; |
| 233 using blink::WebScriptSource; | 232 using blink::WebScriptSource; |
| 234 using blink::WebSearchableFormData; | 233 using blink::WebSearchableFormData; |
| 235 using blink::WebSecurityOrigin; | 234 using blink::WebSecurityOrigin; |
| 236 using blink::WebSecurityPolicy; | 235 using blink::WebSecurityPolicy; |
| 237 using blink::WebSettings; | 236 using blink::WebSettings; |
| (...skipping 2463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2701 INPUT_EVENT_ACK_STATE_NOT_CONSUMED); | 2700 INPUT_EVENT_ACK_STATE_NOT_CONSUMED); |
| 2702 } | 2701 } |
| 2703 | 2702 |
| 2704 std::unique_ptr<InputEventAck> ack( | 2703 std::unique_ptr<InputEventAck> ack( |
| 2705 new InputEventAck(InputEventAckSource::MAIN_THREAD, input_event->type(), | 2704 new InputEventAck(InputEventAckSource::MAIN_THREAD, input_event->type(), |
| 2706 INPUT_EVENT_ACK_STATE_NOT_CONSUMED)); | 2705 INPUT_EVENT_ACK_STATE_NOT_CONSUMED)); |
| 2707 OnInputEventAck(std::move(ack)); | 2706 OnInputEventAck(std::move(ack)); |
| 2708 } | 2707 } |
| 2709 | 2708 |
| 2710 } // namespace content | 2709 } // namespace content |
| OLD | NEW |