| 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 fee3d897857eee9ff9f0232248771c14bf029342..79f6f92d39c186c5b7c4855f1a161e1fb12dc6c4 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.h
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.h
|
| @@ -191,6 +191,10 @@ class CONTENT_EXPORT RenderWidgetHostImpl
|
| const OVERRIDE;
|
| virtual void AccessibilityHitTest(const gfx::Point& point) OVERRIDE;
|
| virtual void AccessibilityFatalError() OVERRIDE;
|
| +#if defined(OS_WIN)
|
| + virtual HWND GetAccessibleParentHWND() const OVERRIDE;
|
| + virtual IAccessible* GetParentIAccessible() const OVERRIDE;
|
| +#endif
|
|
|
| const NativeWebKeyboardEvent* GetLastKeyboardEvent() const;
|
|
|
| @@ -405,12 +409,6 @@ class CONTENT_EXPORT RenderWidgetHostImpl
|
| // BrowserStateAccessibilityImpl.
|
| void ResetAccessibilityMode();
|
|
|
| -#if defined(OS_WIN)
|
| - void SetParentNativeViewAccessible(
|
| - gfx::NativeViewAccessible accessible_parent);
|
| - gfx::NativeViewAccessible GetParentNativeViewAccessible() const;
|
| -#endif
|
| -
|
| // Executes the edit command on the RenderView.
|
| void ExecuteEditCommand(const std::string& command,
|
| const std::string& value);
|
|
|