| 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_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 ImageResourceFetcherList; | 606 ImageResourceFetcherList; |
| 607 | 607 |
| 608 protected: | 608 protected: |
| 609 // RenderWidget overrides: | 609 // RenderWidget overrides: |
| 610 virtual void Close() OVERRIDE; | 610 virtual void Close() OVERRIDE; |
| 611 virtual void OnResize(const ViewMsg_Resize_Params& params) OVERRIDE; | 611 virtual void OnResize(const ViewMsg_Resize_Params& params) OVERRIDE; |
| 612 virtual void DidInitiatePaint() OVERRIDE; | 612 virtual void DidInitiatePaint() OVERRIDE; |
| 613 virtual void DidFlushPaint() OVERRIDE; | 613 virtual void DidFlushPaint() OVERRIDE; |
| 614 virtual gfx::Vector2d GetScrollOffset() OVERRIDE; | 614 virtual gfx::Vector2d GetScrollOffset() OVERRIDE; |
| 615 virtual void DidHandleKeyEvent() OVERRIDE; | 615 virtual void DidHandleKeyEvent() OVERRIDE; |
| 616 virtual void WillProcessUserGesture() OVERRIDE; | |
| 617 virtual bool WillHandleMouseEvent( | 616 virtual bool WillHandleMouseEvent( |
| 618 const blink::WebMouseEvent& event) OVERRIDE; | 617 const blink::WebMouseEvent& event) OVERRIDE; |
| 619 virtual bool WillHandleGestureEvent( | 618 virtual bool WillHandleGestureEvent( |
| 620 const blink::WebGestureEvent& event) OVERRIDE; | 619 const blink::WebGestureEvent& event) OVERRIDE; |
| 621 virtual void DidHandleMouseEvent(const blink::WebMouseEvent& event) OVERRIDE; | 620 virtual void DidHandleMouseEvent(const blink::WebMouseEvent& event) OVERRIDE; |
| 622 virtual void DidHandleTouchEvent(const blink::WebTouchEvent& event) OVERRIDE; | 621 virtual void DidHandleTouchEvent(const blink::WebTouchEvent& event) OVERRIDE; |
| 623 virtual bool HasTouchEventHandlersAt(const gfx::Point& point) const OVERRIDE; | 622 virtual bool HasTouchEventHandlersAt(const gfx::Point& point) const OVERRIDE; |
| 624 virtual void OnSetFocus(bool enable) OVERRIDE; | 623 virtual void OnSetFocus(bool enable) OVERRIDE; |
| 625 virtual void OnWasHidden() OVERRIDE; | 624 virtual void OnWasHidden() OVERRIDE; |
| 626 virtual void OnWasShown(bool needs_repainting) OVERRIDE; | 625 virtual void OnWasShown(bool needs_repainting) OVERRIDE; |
| (...skipping 706 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1333 // use the Observer interface to filter IPC messages and receive frame change | 1332 // use the Observer interface to filter IPC messages and receive frame change |
| 1334 // notifications. | 1333 // notifications. |
| 1335 // --------------------------------------------------------------------------- | 1334 // --------------------------------------------------------------------------- |
| 1336 | 1335 |
| 1337 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1336 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1338 }; | 1337 }; |
| 1339 | 1338 |
| 1340 } // namespace content | 1339 } // namespace content |
| 1341 | 1340 |
| 1342 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1341 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |