Index: views/view.h |
=================================================================== |
--- views/view.h (revision 88518) |
+++ 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(); |
@@ -872,11 +868,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. |
tfarina
2011/06/11 02:06:07
nit: View -> view
dmazzoni
2011/06/13 19:31:53
Done.
|
+ virtual gfx::NativeViewAccessible GetNativeViewAccessible(); |
// Scrolling ----------------------------------------------------------------- |
// TODO(beng): Figure out if this can live somewhere other than View, i.e. |
@@ -1447,8 +1440,8 @@ |
// Accessibility ------------------------------------------------------------- |
-#if defined(OS_WIN) |
// The Windows-specific accessibility implementation for this View. |
tfarina
2011/06/11 02:06:07
please, leave this comment where it was?
tfarina
2011/06/11 02:06:07
nit: View -> view
dmazzoni
2011/06/13 19:31:53
Done.
|
+#if defined(OS_WIN) |
scoped_refptr<NativeViewAccessibilityWin> native_view_accessibility_win_; |
#endif |