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

Unified Diff: views/accessibility/native_view_accessibility_win.cc

Issue 7056027: views: Rename child_widget() to GetChildWidget(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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 | « no previous file | views/controls/tabbed_pane/native_tabbed_pane_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/accessibility/native_view_accessibility_win.cc
diff --git a/views/accessibility/native_view_accessibility_win.cc b/views/accessibility/native_view_accessibility_win.cc
index 029a0dc700e244cf025f919eacdccffcbe0e25b0..6796afefd2ad2c4609ad7c99059a45b1ef04db75 100644
--- a/views/accessibility/native_view_accessibility_win.cc
+++ b/views/accessibility/native_view_accessibility_win.cc
@@ -42,9 +42,9 @@ IAccessible* NativeViewAccessibilityWin::GetAccessibleForView(
}
// Next, see if the view is a widget container.
- if (view->child_widget()) {
+ if (view->GetChildWidget()) {
views::NativeWidgetWin* native_widget =
- reinterpret_cast<views::NativeWidgetWin*>(view->child_widget());
+ reinterpret_cast<views::NativeWidgetWin*>(view->GetChildWidget());
if (GetNativeIAccessibleInterface(
native_widget->GetNativeView(), &accessible) == S_OK) {
return accessible;
« no previous file with comments | « no previous file | views/controls/tabbed_pane/native_tabbed_pane_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698