Index: views/view.h |
=================================================================== |
--- views/view.h (revision 88807) |
+++ views/view.h (working copy) |
@@ -173,10 +173,6 @@ |
// Returns whether the view is hot-tracked. |
virtual bool IsHotTracked() const; |
- // FATE TBD ------------------------------------------------------------------ |
- // TODO(beng): Figure out what these methods are for and delete them. |
- virtual Widget* GetChildWidget(); |
- |
// Creation and lifetime ----------------------------------------------------- |
View(); |
@@ -873,11 +869,8 @@ |
// Modifies |state| to reflect the current accessible state of this view. |
virtual void GetAccessibleState(ui::AccessibleViewState* state) { } |
-#if defined(OS_WIN) |
- // Returns an instance of the Windows-specific accessibility interface |
- // for this View. |
- NativeViewAccessibilityWin* GetNativeViewAccessibilityWin(); |
-#endif |
+ // Returns an instance of the native accessibility interface for this view. |
+ virtual gfx::NativeViewAccessible GetNativeViewAccessible(); |
// Scrolling ----------------------------------------------------------------- |
// TODO(beng): Figure out if this can live somewhere other than View, i.e. |
@@ -1429,8 +1422,8 @@ |
// Accessibility ------------------------------------------------------------- |
+ // The Windows-specific accessibility implementation for this view. |
#if defined(OS_WIN) |
- // The Windows-specific accessibility implementation for this View. |
scoped_refptr<NativeViewAccessibilityWin> native_view_accessibility_win_; |
#endif |