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

Unified Diff: views/view.h

Issue 6995126: Make web content accessibility tree a descendant of main window's tree again (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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
« no previous file with comments | « views/controls/tabbed_pane/native_tabbed_pane_win.cc ('k') | views/view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « views/controls/tabbed_pane/native_tabbed_pane_win.cc ('k') | views/view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698