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 d449cd83114ce162a9cdadeaeca7e208b00d407a..546e2299737fdb679ed2c07c474d3c553076def6 100644 |
--- a/content/browser/renderer_host/render_widget_host_impl.h |
+++ b/content/browser/renderer_host/render_widget_host_impl.h |
@@ -395,8 +395,18 @@ class CONTENT_EXPORT RenderWidgetHostImpl : virtual public RenderWidgetHost, |
return accessibility_mode_; |
} |
- // Send a message to the renderer process to change the accessibility mode. |
- void SetAccessibilityMode(AccessibilityMode mode); |
+ // Adds the given accessibility mode to the current accessibility mode bitmap. |
+ void AddAccessibilityMode(AccessibilityMode mode); |
+ |
+ // Removes the given accessibility mode from the current accessibility mode |
+ // bitmap, managing the bits that are shared with other modes such that a |
+ // bit will only be turned off when all modes that depend on it have been |
+ // removed. |
+ void RemoveAccessibilityMode(AccessibilityMode mode); |
+ |
+ // Resets the accessibility mode to the default setting in |
+ // BrowserStateAccessibilityImpl. |
+ void ResetAccessibilityMode(); |
// Relay a request from assistive technology to perform the default action |
// on a given node. |
@@ -751,6 +761,9 @@ class CONTENT_EXPORT RenderWidgetHostImpl : virtual public RenderWidgetHost, |
void WindowSnapshotReachedScreen(int snapshot_id); |
+ // Send a message to the renderer process to change the accessibility mode. |
+ void SetAccessibilityMode(AccessibilityMode AccessibilityMode); |
+ |
// Our delegate, which wants to know mainly about keyboard events. |
// It will remain non-NULL until DetachDelegate() is called. |
RenderWidgetHostDelegate* delegate_; |