| 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 #ifndef CONTENT_RENDERER_RENDER_WIDGET_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_WIDGET_H_ |
| 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ | 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 blink::WebTextDirection hint) override; | 290 blink::WebTextDirection hint) override; |
| 291 void setWindowRect(const blink::WebRect&) override; | 291 void setWindowRect(const blink::WebRect&) override; |
| 292 blink::WebScreenInfo screenInfo() override; | 292 blink::WebScreenInfo screenInfo() override; |
| 293 void resetInputMethod() override; | 293 void resetInputMethod() override; |
| 294 void didHandleGestureEvent(const blink::WebGestureEvent& event, | 294 void didHandleGestureEvent(const blink::WebGestureEvent& event, |
| 295 bool event_cancelled) override; | 295 bool event_cancelled) override; |
| 296 void didOverscroll(const blink::WebFloatSize& overscrollDelta, | 296 void didOverscroll(const blink::WebFloatSize& overscrollDelta, |
| 297 const blink::WebFloatSize& accumulatedOverscroll, | 297 const blink::WebFloatSize& accumulatedOverscroll, |
| 298 const blink::WebFloatPoint& position, | 298 const blink::WebFloatPoint& position, |
| 299 const blink::WebFloatSize& velocity) override; | 299 const blink::WebFloatSize& velocity) override; |
| 300 void showVirtualKeyboard() override; | 300 void showVirtualKeyboardOnElementFocus() override; |
| 301 void convertViewportToWindow(blink::WebRect* rect) override; | 301 void convertViewportToWindow(blink::WebRect* rect) override; |
| 302 void convertWindowToViewport(blink::WebFloatRect* rect) override; | 302 void convertWindowToViewport(blink::WebFloatRect* rect) override; |
| 303 bool requestPointerLock() override; | 303 bool requestPointerLock() override; |
| 304 void requestPointerUnlock() override; | 304 void requestPointerUnlock() override; |
| 305 bool isPointerLocked() override; | 305 bool isPointerLocked() override; |
| 306 void startDragging(blink::WebReferrerPolicy policy, | 306 void startDragging(blink::WebReferrerPolicy policy, |
| 307 const blink::WebDragData& data, | 307 const blink::WebDragData& data, |
| 308 blink::WebDragOperationsMask mask, | 308 blink::WebDragOperationsMask mask, |
| 309 const blink::WebImage& image, | 309 const blink::WebImage& image, |
| 310 const blink::WebPoint& imageOffset) override; | 310 const blink::WebPoint& imageOffset) override; |
| (...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 836 // being handled. If the current event results in starting a drag/drop | 836 // being handled. If the current event results in starting a drag/drop |
| 837 // session, this info is sent to the browser along with other drag/drop info. | 837 // session, this info is sent to the browser along with other drag/drop info. |
| 838 DragEventSourceInfo possible_drag_event_info_; | 838 DragEventSourceInfo possible_drag_event_info_; |
| 839 | 839 |
| 840 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 840 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
| 841 }; | 841 }; |
| 842 | 842 |
| 843 } // namespace content | 843 } // namespace content |
| 844 | 844 |
| 845 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 845 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
| OLD | NEW |