| 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 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 685 virtual void DidInitiatePaint() OVERRIDE; | 685 virtual void DidInitiatePaint() OVERRIDE; |
| 686 virtual void DidFlushPaint() OVERRIDE; | 686 virtual void DidFlushPaint() OVERRIDE; |
| 687 virtual PepperPluginInstanceImpl* GetBitmapForOptimizedPluginPaint( | 687 virtual PepperPluginInstanceImpl* GetBitmapForOptimizedPluginPaint( |
| 688 const gfx::Rect& paint_bounds, | 688 const gfx::Rect& paint_bounds, |
| 689 TransportDIB** dib, | 689 TransportDIB** dib, |
| 690 gfx::Rect* location, | 690 gfx::Rect* location, |
| 691 gfx::Rect* clip, | 691 gfx::Rect* clip, |
| 692 float* scale_factor) OVERRIDE; | 692 float* scale_factor) OVERRIDE; |
| 693 virtual gfx::Vector2d GetScrollOffset() OVERRIDE; | 693 virtual gfx::Vector2d GetScrollOffset() OVERRIDE; |
| 694 virtual void DidHandleKeyEvent() OVERRIDE; | 694 virtual void DidHandleKeyEvent() OVERRIDE; |
| 695 virtual void ProcessingUserGestureEvent() OVERRIDE; |
| 695 virtual bool WillHandleMouseEvent( | 696 virtual bool WillHandleMouseEvent( |
| 696 const blink::WebMouseEvent& event) OVERRIDE; | 697 const blink::WebMouseEvent& event) OVERRIDE; |
| 697 virtual bool WillHandleGestureEvent( | 698 virtual bool WillHandleGestureEvent( |
| 698 const blink::WebGestureEvent& event) OVERRIDE; | 699 const blink::WebGestureEvent& event) OVERRIDE; |
| 699 virtual void DidHandleMouseEvent(const blink::WebMouseEvent& event) OVERRIDE; | 700 virtual void DidHandleMouseEvent(const blink::WebMouseEvent& event) OVERRIDE; |
| 700 virtual void DidHandleTouchEvent(const blink::WebTouchEvent& event) OVERRIDE; | 701 virtual void DidHandleTouchEvent(const blink::WebTouchEvent& event) OVERRIDE; |
| 701 virtual bool HasTouchEventHandlersAt(const gfx::Point& point) const OVERRIDE; | 702 virtual bool HasTouchEventHandlersAt(const gfx::Point& point) const OVERRIDE; |
| 702 virtual void OnSetFocus(bool enable) OVERRIDE; | 703 virtual void OnSetFocus(bool enable) OVERRIDE; |
| 703 virtual void OnWasHidden() OVERRIDE; | 704 virtual void OnWasHidden() OVERRIDE; |
| 704 virtual void OnWasShown(bool needs_repainting) OVERRIDE; | 705 virtual void OnWasShown(bool needs_repainting) OVERRIDE; |
| (...skipping 762 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1467 // use the Observer interface to filter IPC messages and receive frame change | 1468 // use the Observer interface to filter IPC messages and receive frame change |
| 1468 // notifications. | 1469 // notifications. |
| 1469 // --------------------------------------------------------------------------- | 1470 // --------------------------------------------------------------------------- |
| 1470 | 1471 |
| 1471 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1472 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1472 }; | 1473 }; |
| 1473 | 1474 |
| 1474 } // namespace content | 1475 } // namespace content |
| 1475 | 1476 |
| 1476 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1477 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |