| 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 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <list> | 9 #include <list> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 const NativeWebKeyboardEvent& key_event) OVERRIDE; | 148 const NativeWebKeyboardEvent& key_event) OVERRIDE; |
| 149 virtual const gfx::Vector2d& GetLastScrollOffset() const OVERRIDE; | 149 virtual const gfx::Vector2d& GetLastScrollOffset() const OVERRIDE; |
| 150 virtual RenderProcessHost* GetProcess() const OVERRIDE; | 150 virtual RenderProcessHost* GetProcess() const OVERRIDE; |
| 151 virtual int GetRoutingID() const OVERRIDE; | 151 virtual int GetRoutingID() const OVERRIDE; |
| 152 virtual RenderWidgetHostView* GetView() const OVERRIDE; | 152 virtual RenderWidgetHostView* GetView() const OVERRIDE; |
| 153 virtual bool IsLoading() const OVERRIDE; | 153 virtual bool IsLoading() const OVERRIDE; |
| 154 virtual bool IsRenderView() const OVERRIDE; | 154 virtual bool IsRenderView() const OVERRIDE; |
| 155 virtual void ResizeRectChanged(const gfx::Rect& new_rect) OVERRIDE; | 155 virtual void ResizeRectChanged(const gfx::Rect& new_rect) OVERRIDE; |
| 156 virtual void RestartHangMonitorTimeout() OVERRIDE; | 156 virtual void RestartHangMonitorTimeout() OVERRIDE; |
| 157 virtual void SetIgnoreInputEvents(bool ignore_input_events) OVERRIDE; | 157 virtual void SetIgnoreInputEvents(bool ignore_input_events) OVERRIDE; |
| 158 virtual void Stop() OVERRIDE; | |
| 159 virtual void WasResized() OVERRIDE; | 158 virtual void WasResized() OVERRIDE; |
| 160 virtual void AddKeyPressEventCallback( | 159 virtual void AddKeyPressEventCallback( |
| 161 const KeyPressEventCallback& callback) OVERRIDE; | 160 const KeyPressEventCallback& callback) OVERRIDE; |
| 162 virtual void RemoveKeyPressEventCallback( | 161 virtual void RemoveKeyPressEventCallback( |
| 163 const KeyPressEventCallback& callback) OVERRIDE; | 162 const KeyPressEventCallback& callback) OVERRIDE; |
| 164 virtual void AddMouseEventCallback( | 163 virtual void AddMouseEventCallback( |
| 165 const MouseEventCallback& callback) OVERRIDE; | 164 const MouseEventCallback& callback) OVERRIDE; |
| 166 virtual void RemoveMouseEventCallback( | 165 virtual void RemoveMouseEventCallback( |
| 167 const MouseEventCallback& callback) OVERRIDE; | 166 const MouseEventCallback& callback) OVERRIDE; |
| 168 virtual void GetWebScreenInfo(blink::WebScreenInfo* result) OVERRIDE; | 167 virtual void GetWebScreenInfo(blink::WebScreenInfo* result) OVERRIDE; |
| (...skipping 675 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 844 typedef std::map<int, | 843 typedef std::map<int, |
| 845 base::Callback<void(const unsigned char*, size_t)> > PendingSnapshotMap; | 844 base::Callback<void(const unsigned char*, size_t)> > PendingSnapshotMap; |
| 846 PendingSnapshotMap pending_browser_snapshots_; | 845 PendingSnapshotMap pending_browser_snapshots_; |
| 847 | 846 |
| 848 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 847 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
| 849 }; | 848 }; |
| 850 | 849 |
| 851 } // namespace content | 850 } // namespace content |
| 852 | 851 |
| 853 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 852 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| OLD | NEW |