diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-14 23:45:09 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-14 23:45:09 +0000 |
commit | 613b80638081101368e31300f6e729c720b160e0 (patch) | |
tree | 0b3dc7c7e0dde27abc814d13bdff3a1758ccde2f /chrome/views/accessibility | |
parent | 41a5ca123f45f471457485e87681c02a21a2f052 (diff) | |
download | chromium_src-613b80638081101368e31300f6e729c720b160e0.zip chromium_src-613b80638081101368e31300f6e729c720b160e0.tar.gz chromium_src-613b80638081101368e31300f6e729c720b160e0.tar.bz2 |
Convert HitTest/GetViewForPoint to use gfx::Point
http://crbug.com/2186
Review URL: http://codereview.chromium.org/7331
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3384 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/views/accessibility')
-rw-r--r-- | chrome/views/accessibility/view_accessibility.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/views/accessibility/view_accessibility.cc b/chrome/views/accessibility/view_accessibility.cc index 6122757..af502fc 100644 --- a/chrome/views/accessibility/view_accessibility.cc +++ b/chrome/views/accessibility/view_accessibility.cc @@ -495,7 +495,7 @@ STDMETHODIMP ViewAccessibility::accHitTest(LONG x_left, LONG y_top, gfx::Point pt(x_left, y_top); ChromeViews::View::ConvertPointToView(NULL, view_, &pt); - if (!view_->HitTest(pt.ToPOINT())) { + if (!view_->HitTest(pt)) { // If containing parent is not hit, return with failure. child->vt = VT_EMPTY; return S_FALSE; @@ -508,7 +508,7 @@ STDMETHODIMP ViewAccessibility::accHitTest(LONG x_left, LONG y_top, // Search for hit within any of the children. child_view = view_->GetChildViewAt(child_id); ChromeViews::View::ConvertPointToView(view_, child_view, &pt); - if (child_view->HitTest(pt.ToPOINT())) { + if (child_view->HitTest(pt)) { // Store child_id (adjusted with +1 to convert to MSAA indexing). child->lVal = child_id + 1; child_hit = true; |