| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 void ForwardMouseEvent(const blink::WebMouseEvent& mouse_event) override; | 152 void ForwardMouseEvent(const blink::WebMouseEvent& mouse_event) override; |
| 153 void ForwardWheelEvent(const blink::WebMouseWheelEvent& wheel_event) override; | 153 void ForwardWheelEvent(const blink::WebMouseWheelEvent& wheel_event) override; |
| 154 void ForwardKeyboardEvent(const NativeWebKeyboardEvent& key_event) override; | 154 void ForwardKeyboardEvent(const NativeWebKeyboardEvent& key_event) override; |
| 155 void ForwardGestureEvent( | 155 void ForwardGestureEvent( |
| 156 const blink::WebGestureEvent& gesture_event) override; | 156 const blink::WebGestureEvent& gesture_event) override; |
| 157 RenderProcessHost* GetProcess() const override; | 157 RenderProcessHost* GetProcess() const override; |
| 158 int GetRoutingID() const override; | 158 int GetRoutingID() const override; |
| 159 RenderWidgetHostViewBase* GetView() const override; | 159 RenderWidgetHostViewBase* GetView() const override; |
| 160 bool IsLoading() const override; | 160 bool IsLoading() const override; |
| 161 void RestartHangMonitorTimeoutIfNecessary() override; | 161 void RestartHangMonitorTimeoutIfNecessary() override; |
| 162 void DisableHangMonitorForTesting() override; | |
| 163 void SetIgnoreInputEvents(bool ignore_input_events) override; | 162 void SetIgnoreInputEvents(bool ignore_input_events) override; |
| 164 void WasResized() override; | 163 void WasResized() override; |
| 165 void AddKeyPressEventCallback(const KeyPressEventCallback& callback) override; | 164 void AddKeyPressEventCallback(const KeyPressEventCallback& callback) override; |
| 166 void RemoveKeyPressEventCallback( | 165 void RemoveKeyPressEventCallback( |
| 167 const KeyPressEventCallback& callback) override; | 166 const KeyPressEventCallback& callback) override; |
| 168 void AddMouseEventCallback(const MouseEventCallback& callback) override; | 167 void AddMouseEventCallback(const MouseEventCallback& callback) override; |
| 169 void RemoveMouseEventCallback(const MouseEventCallback& callback) override; | 168 void RemoveMouseEventCallback(const MouseEventCallback& callback) override; |
| 170 void AddInputEventObserver( | 169 void AddInputEventObserver( |
| 171 RenderWidgetHost::InputEventObserver* observer) override; | 170 RenderWidgetHost::InputEventObserver* observer) override; |
| 172 void RemoveInputEventObserver( | 171 void RemoveInputEventObserver( |
| (...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 934 float last_device_scale_factor_; | 933 float last_device_scale_factor_; |
| 935 | 934 |
| 936 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; | 935 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; |
| 937 | 936 |
| 938 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 937 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
| 939 }; | 938 }; |
| 940 | 939 |
| 941 } // namespace content | 940 } // namespace content |
| 942 | 941 |
| 943 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 942 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| OLD | NEW |