Index: content/renderer/render_view_impl.h |
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h |
index ae520fafa0bbe642a63ae51a73c0cf0abce3c35c..4a3fd33add68902d032fa18125c39d656b74cdef 100644 |
--- a/content/renderer/render_view_impl.h |
+++ b/content/renderer/render_view_impl.h |
@@ -194,7 +194,7 @@ class CONTENT_EXPORT RenderViewImpl |
bool hidden, |
int32 next_page_id, |
const blink::WebScreenInfo& screen_info, |
- AccessibilityMode accessibility_mode, |
+ unsigned int accessibility_mode, |
bool allow_partial_swap); |
// Used by content_layouttest_support to hook into the creation of |
@@ -957,7 +957,7 @@ class CONTENT_EXPORT RenderViewImpl |
const base::string16& jscript, |
int id, |
bool notify_result); |
- void OnSetAccessibilityMode(AccessibilityMode new_mode); |
+ void OnSetAccessibilityMode(unsigned int new_mode); |
void OnSetActive(bool active); |
void OnSetBackground(const SkBitmap& background); |
void OnSetCompositionFromExistingText( |
@@ -1375,10 +1375,10 @@ class CONTENT_EXPORT RenderViewImpl |
DevToolsAgent* devtools_agent_; |
// The current accessibility mode. |
- AccessibilityMode accessibility_mode_; |
+ unsigned int accessibility_mode_; |
- // Only valid if |accessibility_mode_| is anything other than |
- // AccessibilityModeOff. |
+ // Only valid if |accessibility_mode_| has the AccessibilityModeFlagRenderer |
+ // bit set. |
RendererAccessibility* renderer_accessibility_; |
// Mouse Lock dispatcher attached to this view. |