| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 void UnlockBackingStore() override; | 158 void UnlockBackingStore() override; |
| 159 void ForwardMouseEvent(const blink::WebMouseEvent& mouse_event) override; | 159 void ForwardMouseEvent(const blink::WebMouseEvent& mouse_event) override; |
| 160 void ForwardWheelEvent(const blink::WebMouseWheelEvent& wheel_event) override; | 160 void ForwardWheelEvent(const blink::WebMouseWheelEvent& wheel_event) override; |
| 161 void ForwardKeyboardEvent(const NativeWebKeyboardEvent& key_event) override; | 161 void ForwardKeyboardEvent(const NativeWebKeyboardEvent& key_event) override; |
| 162 void ForwardGestureEvent( | 162 void ForwardGestureEvent( |
| 163 const blink::WebGestureEvent& gesture_event) override; | 163 const blink::WebGestureEvent& gesture_event) override; |
| 164 RenderProcessHost* GetProcess() const override; | 164 RenderProcessHost* GetProcess() const override; |
| 165 int GetRoutingID() const override; | 165 int GetRoutingID() const override; |
| 166 RenderWidgetHostViewBase* GetView() const override; | 166 RenderWidgetHostViewBase* GetView() const override; |
| 167 bool IsLoading() const override; | 167 bool IsLoading() const override; |
| 168 void ResizeRectChanged(const gfx::Rect& new_rect) override; | |
| 169 void RestartHangMonitorTimeout() override; | 168 void RestartHangMonitorTimeout() override; |
| 170 void DisableHangMonitorForTesting() override; | 169 void DisableHangMonitorForTesting() override; |
| 171 void SetIgnoreInputEvents(bool ignore_input_events) override; | 170 void SetIgnoreInputEvents(bool ignore_input_events) override; |
| 172 void WasResized() override; | 171 void WasResized() override; |
| 173 void AddKeyPressEventCallback(const KeyPressEventCallback& callback) override; | 172 void AddKeyPressEventCallback(const KeyPressEventCallback& callback) override; |
| 174 void RemoveKeyPressEventCallback( | 173 void RemoveKeyPressEventCallback( |
| 175 const KeyPressEventCallback& callback) override; | 174 const KeyPressEventCallback& callback) override; |
| 176 void AddMouseEventCallback(const MouseEventCallback& callback) override; | 175 void AddMouseEventCallback(const MouseEventCallback& callback) override; |
| 177 void RemoveMouseEventCallback(const MouseEventCallback& callback) override; | 176 void RemoveMouseEventCallback(const MouseEventCallback& callback) override; |
| 178 void AddInputEventObserver( | 177 void AddInputEventObserver( |
| (...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 846 #endif | 845 #endif |
| 847 | 846 |
| 848 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; | 847 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; |
| 849 | 848 |
| 850 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 849 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
| 851 }; | 850 }; |
| 852 | 851 |
| 853 } // namespace content | 852 } // namespace content |
| 854 | 853 |
| 855 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 854 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| OLD | NEW |