| 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_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 virtual void ForwardMouseEvent( | 99 virtual void ForwardMouseEvent( |
| 100 const WebKit::WebMouseEvent& mouse_event) OVERRIDE; | 100 const WebKit::WebMouseEvent& mouse_event) OVERRIDE; |
| 101 virtual void ForwardWheelEvent( | 101 virtual void ForwardWheelEvent( |
| 102 const WebKit::WebMouseWheelEvent& wheel_event) OVERRIDE; | 102 const WebKit::WebMouseWheelEvent& wheel_event) OVERRIDE; |
| 103 virtual void ForwardKeyboardEvent( | 103 virtual void ForwardKeyboardEvent( |
| 104 const NativeWebKeyboardEvent& key_event) OVERRIDE; | 104 const NativeWebKeyboardEvent& key_event) OVERRIDE; |
| 105 virtual const gfx::Point& GetLastScrollOffset() const OVERRIDE; | 105 virtual const gfx::Point& GetLastScrollOffset() const OVERRIDE; |
| 106 virtual RenderProcessHost* GetProcess() const OVERRIDE; | 106 virtual RenderProcessHost* GetProcess() const OVERRIDE; |
| 107 virtual int GetRoutingID() const OVERRIDE; | 107 virtual int GetRoutingID() const OVERRIDE; |
| 108 virtual RenderWidgetHostView* GetView() const OVERRIDE; | 108 virtual RenderWidgetHostView* GetView() const OVERRIDE; |
| 109 virtual bool IsLoading() const OVERRIDE; |
| 109 virtual bool IsRenderView() const OVERRIDE; | 110 virtual bool IsRenderView() const OVERRIDE; |
| 110 virtual void PaintAtSize(TransportDIB::Handle dib_handle, | 111 virtual void PaintAtSize(TransportDIB::Handle dib_handle, |
| 111 int tag, | 112 int tag, |
| 112 const gfx::Size& page_size, | 113 const gfx::Size& page_size, |
| 113 const gfx::Size& desired_size) OVERRIDE; | 114 const gfx::Size& desired_size) OVERRIDE; |
| 114 virtual void Replace(const string16& word) OVERRIDE; | 115 virtual void Replace(const string16& word) OVERRIDE; |
| 115 virtual void ResizeRectChanged(const gfx::Rect& new_rect) OVERRIDE; | 116 virtual void ResizeRectChanged(const gfx::Rect& new_rect) OVERRIDE; |
| 116 virtual void RestartHangMonitorTimeout() OVERRIDE; | 117 virtual void RestartHangMonitorTimeout() OVERRIDE; |
| 117 virtual void SetIgnoreInputEvents(bool ignore_input_events) OVERRIDE; | 118 virtual void SetIgnoreInputEvents(bool ignore_input_events) OVERRIDE; |
| 118 virtual void Stop() OVERRIDE; | 119 virtual void Stop() OVERRIDE; |
| (...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; | 710 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; |
| 710 | 711 |
| 711 scoped_ptr<TapSuppressionController> tap_suppression_controller_; | 712 scoped_ptr<TapSuppressionController> tap_suppression_controller_; |
| 712 | 713 |
| 713 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 714 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
| 714 }; | 715 }; |
| 715 | 716 |
| 716 } // namespace content | 717 } // namespace content |
| 717 | 718 |
| 718 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 719 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| OLD | NEW |