| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 using blink::WebMouseEvent; | 231 using blink::WebMouseEvent; |
| 232 using blink::WebNavigationPolicy; | 232 using blink::WebNavigationPolicy; |
| 233 using blink::WebNavigationType; | 233 using blink::WebNavigationType; |
| 234 using blink::WebNode; | 234 using blink::WebNode; |
| 235 using blink::WebPeerConnection00Handler; | 235 using blink::WebPeerConnection00Handler; |
| 236 using blink::WebPeerConnection00HandlerClient; | 236 using blink::WebPeerConnection00HandlerClient; |
| 237 using blink::WebPeerConnectionHandler; | 237 using blink::WebPeerConnectionHandler; |
| 238 using blink::WebPeerConnectionHandlerClient; | 238 using blink::WebPeerConnectionHandlerClient; |
| 239 using blink::WebPluginAction; | 239 using blink::WebPluginAction; |
| 240 using blink::WebPoint; | 240 using blink::WebPoint; |
| 241 using blink::WebRange; | |
| 242 using blink::WebRect; | 241 using blink::WebRect; |
| 243 using blink::WebReferrerPolicy; | 242 using blink::WebReferrerPolicy; |
| 244 using blink::WebScriptSource; | 243 using blink::WebScriptSource; |
| 245 using blink::WebSearchableFormData; | 244 using blink::WebSearchableFormData; |
| 246 using blink::WebSecurityOrigin; | 245 using blink::WebSecurityOrigin; |
| 247 using blink::WebSecurityPolicy; | 246 using blink::WebSecurityPolicy; |
| 248 using blink::WebSettings; | 247 using blink::WebSettings; |
| 249 using blink::WebSize; | 248 using blink::WebSize; |
| 250 using blink::WebStorageNamespace; | 249 using blink::WebStorageNamespace; |
| 251 using blink::WebStorageQuotaCallbacks; | 250 using blink::WebStorageQuotaCallbacks; |
| (...skipping 2828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3080 return render_frame->focused_pepper_plugin(); | 3079 return render_frame->focused_pepper_plugin(); |
| 3081 } | 3080 } |
| 3082 frame = frame->traverseNext(false); | 3081 frame = frame->traverseNext(false); |
| 3083 } | 3082 } |
| 3084 | 3083 |
| 3085 return nullptr; | 3084 return nullptr; |
| 3086 } | 3085 } |
| 3087 #endif | 3086 #endif |
| 3088 | 3087 |
| 3089 } // namespace content | 3088 } // namespace content |
| OLD | NEW |