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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 using blink::WebIconURL; | 223 using blink::WebIconURL; |
224 using blink::WebImage; | 224 using blink::WebImage; |
225 using blink::WebInputElement; | 225 using blink::WebInputElement; |
226 using blink::WebInputEvent; | 226 using blink::WebInputEvent; |
227 using blink::WebLocalFrame; | 227 using blink::WebLocalFrame; |
228 using blink::WebMediaPlayerAction; | 228 using blink::WebMediaPlayerAction; |
229 using blink::WebMouseEvent; | 229 using blink::WebMouseEvent; |
230 using blink::WebNavigationPolicy; | 230 using blink::WebNavigationPolicy; |
231 using blink::WebNavigationType; | 231 using blink::WebNavigationType; |
232 using blink::WebNode; | 232 using blink::WebNode; |
233 using blink::WebPeerConnection00Handler; | |
234 using blink::WebPeerConnection00HandlerClient; | |
235 using blink::WebPeerConnectionHandler; | |
236 using blink::WebPeerConnectionHandlerClient; | |
237 using blink::WebPluginAction; | 233 using blink::WebPluginAction; |
238 using blink::WebPoint; | 234 using blink::WebPoint; |
239 using blink::WebRect; | 235 using blink::WebRect; |
240 using blink::WebReferrerPolicy; | 236 using blink::WebReferrerPolicy; |
241 using blink::WebScriptSource; | 237 using blink::WebScriptSource; |
242 using blink::WebSearchableFormData; | 238 using blink::WebSearchableFormData; |
243 using blink::WebSecurityOrigin; | 239 using blink::WebSecurityOrigin; |
244 using blink::WebSecurityPolicy; | 240 using blink::WebSecurityPolicy; |
245 using blink::WebSettings; | 241 using blink::WebSettings; |
246 using blink::WebSize; | 242 using blink::WebSize; |
(...skipping 2747 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2994 NotifyInputEventHandled(input_event->type, | 2990 NotifyInputEventHandled(input_event->type, |
2995 INPUT_EVENT_ACK_STATE_NOT_CONSUMED); | 2991 INPUT_EVENT_ACK_STATE_NOT_CONSUMED); |
2996 } | 2992 } |
2997 | 2993 |
2998 std::unique_ptr<InputEventAck> ack( | 2994 std::unique_ptr<InputEventAck> ack( |
2999 new InputEventAck(input_event->type, INPUT_EVENT_ACK_STATE_NOT_CONSUMED)); | 2995 new InputEventAck(input_event->type, INPUT_EVENT_ACK_STATE_NOT_CONSUMED)); |
3000 OnInputEventAck(std::move(ack)); | 2996 OnInputEventAck(std::move(ack)); |
3001 } | 2997 } |
3002 | 2998 |
3003 } // namespace content | 2999 } // namespace content |
OLD | NEW |