| Index: chrome/browser/chromeos/input_method/candidate_window.cc
|
| diff --git a/chrome/browser/chromeos/input_method/candidate_window.cc b/chrome/browser/chromeos/input_method/candidate_window.cc
|
| index 6dce7ecebf2e6fca96ee41f94f4d8ea2f68f2a4a..5e21e4951c99ac3ab69f6965260897387ba839ab 100644
|
| --- a/chrome/browser/chromeos/input_method/candidate_window.cc
|
| +++ b/chrome/browser/chromeos/input_method/candidate_window.cc
|
| @@ -1185,7 +1185,7 @@ void CandidateWindowView::OnCandidatePressed(
|
| gfx::Point converted_location = location;
|
| views::View::ConvertPointToView(this, candidate_views_[i],
|
| &converted_location);
|
| - if (candidate_views_[i]->HitTest(converted_location)) {
|
| + if (candidate_views_[i]->HitTestPoint(converted_location)) {
|
| SelectCandidateAt(i);
|
| break;
|
| }
|
|
|