| Index: content/renderer/render_view_impl.h
|
| diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
|
| index c174bcf76c07e03e6dc1cf7e8066c1e665ff4e13..5de5165fecbb7be04eaa174ba900de579578f724 100644
|
| --- a/content/renderer/render_view_impl.h
|
| +++ b/content/renderer/render_view_impl.h
|
| @@ -145,7 +145,6 @@ class PepperPluginInstanceImpl;
|
| class PushMessagingDispatcher;
|
| class RenderViewObserver;
|
| class RenderViewTest;
|
| -class RendererAccessibility;
|
| class RendererDateTimePicker;
|
| class RendererWebColorChooserImpl;
|
| class SpeechRecognitionDispatcher;
|
| @@ -189,8 +188,7 @@ class CONTENT_EXPORT RenderViewImpl
|
| bool hidden,
|
| bool never_visible,
|
| int32 next_page_id,
|
| - const blink::WebScreenInfo& screen_info,
|
| - AccessibilityMode accessibility_mode);
|
| + const blink::WebScreenInfo& screen_info);
|
|
|
| // Used by content_layouttest_support to hook into the creation of
|
| // RenderViewImpls.
|
| @@ -227,14 +225,6 @@ class CONTENT_EXPORT RenderViewImpl
|
| return media_stream_dispatcher_;
|
| }
|
|
|
| - AccessibilityMode accessibility_mode() {
|
| - return accessibility_mode_;
|
| - }
|
| -
|
| - RendererAccessibility* renderer_accessibility() {
|
| - return renderer_accessibility_;
|
| - }
|
| -
|
| MouseLockDispatcher* mouse_lock_dispatcher() {
|
| return mouse_lock_dispatcher_;
|
| }
|
| @@ -585,7 +575,6 @@ class CONTENT_EXPORT RenderViewImpl
|
| // For unit tests.
|
| friend class ExternalPopupMenuTest;
|
| friend class PepperDeviceTest;
|
| - friend class RendererAccessibilityTest;
|
| friend class RenderViewTest;
|
|
|
| // TODO(nasko): Temporarily friend RenderFrameImpl, so we don't duplicate
|
| @@ -610,7 +599,7 @@ class CONTENT_EXPORT RenderViewImpl
|
| FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnHandleKeyboardEvent);
|
| FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnImeTypeChanged);
|
| FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnNavStateChanged);
|
| - FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnSetAccessibilityMode);
|
| + //FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnSetAccessibilityMode);
|
| FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnSetTextDirection);
|
| FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnUpdateWebPreferences);
|
| FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest,
|
| @@ -757,7 +746,6 @@ class CONTENT_EXPORT RenderViewImpl
|
| void OnPostMessageEvent(const ViewMsg_PostMessage_Params& params);
|
| void OnReleaseDisambiguationPopupBitmap(const cc::SharedBitmapId& id);
|
| void OnResetPageEncodingToDefault();
|
| - void OnSetAccessibilityMode(AccessibilityMode new_mode);
|
| void OnSetActive(bool active);
|
| void OnSetBackground(const SkBitmap& background);
|
| void OnExitFullscreen();
|
| @@ -1108,13 +1096,6 @@ class CONTENT_EXPORT RenderViewImpl
|
|
|
| DevToolsAgent* devtools_agent_;
|
|
|
| - // The current accessibility mode.
|
| - AccessibilityMode accessibility_mode_;
|
| -
|
| - // Only valid if |accessibility_mode_| is anything other than
|
| - // AccessibilityModeOff.
|
| - RendererAccessibility* renderer_accessibility_;
|
| -
|
| // Mouse Lock dispatcher attached to this view.
|
| MouseLockDispatcher* mouse_lock_dispatcher_;
|
|
|
|
|