Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(825)

Unified Diff: content/browser/renderer_host/render_widget_host_impl.h

Issue 329053004: Fix race in BrowserAccessibilityManagerWin creation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698