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 df6dc8daa2bf9fa796b805eb4e3f1e51d2e9cc75..70cf2bc8ab25d095bfa5a3642935ede43515b0ef 100644 |
--- a/content/browser/renderer_host/render_widget_host_impl.h |
+++ b/content/browser/renderer_host/render_widget_host_impl.h |
@@ -392,12 +392,12 @@ class CONTENT_EXPORT RenderWidgetHostImpl : virtual public RenderWidgetHost, |
const std::vector<EditCommand>& commands); |
// Gets the accessibility mode. |
- AccessibilityMode accessibility_mode() const { |
+ unsigned int accessibility_mode() const { |
return accessibility_mode_; |
} |
// Send a message to the renderer process to change the accessibility mode. |
- void SetAccessibilityMode(AccessibilityMode mode); |
+ void SetAccessibilityMode(unsigned int mode); |
// Relay a request from assistive technology to perform the default action |
// on a given node. |
@@ -830,7 +830,7 @@ class CONTENT_EXPORT RenderWidgetHostImpl : virtual public RenderWidgetHost, |
gfx::Rect last_view_screen_rect_; |
gfx::Rect last_window_screen_rect_; |
- AccessibilityMode accessibility_mode_; |
+ unsigned int accessibility_mode_; |
// Keyboard event listeners. |
std::vector<KeyPressEventCallback> key_press_event_callbacks_; |