| 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_widget.h" | 5 #include "content/renderer/render_widget.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/auto_reset.h" | 10 #include "base/auto_reset.h" |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 using blink::WebDeviceEmulationParams; | 116 using blink::WebDeviceEmulationParams; |
| 117 using blink::WebDragOperation; | 117 using blink::WebDragOperation; |
| 118 using blink::WebDragOperationsMask; | 118 using blink::WebDragOperationsMask; |
| 119 using blink::WebDragData; | 119 using blink::WebDragData; |
| 120 using blink::WebFrameWidget; | 120 using blink::WebFrameWidget; |
| 121 using blink::WebGestureEvent; | 121 using blink::WebGestureEvent; |
| 122 using blink::WebImage; | 122 using blink::WebImage; |
| 123 using blink::WebInputEvent; | 123 using blink::WebInputEvent; |
| 124 using blink::WebInputEventResult; | 124 using blink::WebInputEventResult; |
| 125 using blink::WebInputMethodController; | 125 using blink::WebInputMethodController; |
| 126 using blink::WebKeyboardEvent; | |
| 127 using blink::WebLocalFrame; | 126 using blink::WebLocalFrame; |
| 128 using blink::WebMouseEvent; | 127 using blink::WebMouseEvent; |
| 129 using blink::WebMouseWheelEvent; | 128 using blink::WebMouseWheelEvent; |
| 130 using blink::WebNavigationPolicy; | 129 using blink::WebNavigationPolicy; |
| 131 using blink::WebNode; | 130 using blink::WebNode; |
| 132 using blink::WebPagePopup; | 131 using blink::WebPagePopup; |
| 133 using blink::WebPoint; | 132 using blink::WebPoint; |
| 134 using blink::WebPopupType; | 133 using blink::WebPopupType; |
| 135 using blink::WebRange; | 134 using blink::WebRange; |
| 136 using blink::WebRect; | 135 using blink::WebRect; |
| (...skipping 2136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2273 // browser side (https://crbug.com/669219). | 2272 // browser side (https://crbug.com/669219). |
| 2274 // If there is no WebFrameWidget, then there will be no | 2273 // If there is no WebFrameWidget, then there will be no |
| 2275 // InputMethodControllers for a WebLocalFrame. | 2274 // InputMethodControllers for a WebLocalFrame. |
| 2276 return nullptr; | 2275 return nullptr; |
| 2277 } | 2276 } |
| 2278 return static_cast<blink::WebFrameWidget*>(GetWebWidget()) | 2277 return static_cast<blink::WebFrameWidget*>(GetWebWidget()) |
| 2279 ->getActiveWebInputMethodController(); | 2278 ->getActiveWebInputMethodController(); |
| 2280 } | 2279 } |
| 2281 | 2280 |
| 2282 } // namespace content | 2281 } // namespace content |
| OLD | NEW |