Chromium Code Reviews| Index: content/browser/renderer_host/render_widget_host_impl.h |
| diff --git a/content/browser/renderer_host/render_widget_host_impl.h b/content/browser/renderer_host/render_widget_host_impl.h |
| index c088309b4d4fe916e858b61a716b4e176a852328..bd4013f462fb8fed14cead37c892ba44b903468b 100644 |
| --- a/content/browser/renderer_host/render_widget_host_impl.h |
| +++ b/content/browser/renderer_host/render_widget_host_impl.h |
| @@ -119,6 +119,9 @@ class CONTENT_EXPORT RenderWidgetHostImpl : virtual public RenderWidgetHost, |
| CGContextRef target) OVERRIDE; |
| #endif |
| virtual void EnableFullAccessibilityMode() OVERRIDE; |
| + virtual bool GetAccessibilityEnabled() const OVERRIDE; |
| + virtual void SetAccessibilityEnabled(bool enabled) OVERRIDE; |
|
dmazzoni
2013/02/26 22:37:36
This is now redundant with EnableFullAccessibility
aboxhall
2013/02/27 01:44:16
Since AccessibilityMode is now in content/public,
|
| + |
| virtual void ForwardMouseEvent( |
| const WebKit::WebMouseEvent& mouse_event) OVERRIDE; |
| virtual void ForwardWheelEvent( |
| @@ -727,6 +730,8 @@ class CONTENT_EXPORT RenderWidgetHostImpl : virtual public RenderWidgetHost, |
| // would be queued) results in very slow scrolling. |
| WheelEventQueue coalesced_mouse_wheel_events_; |
| + enum AccessibilityMode accessibility_mode_; |
| + |
| // (Similar to |mouse_move_pending_|.) True while waiting for SelectRange_ACK. |
| bool select_range_pending_; |