| Index: ui/base/ime/input_method_win.cc
|
| diff --git a/ui/base/ime/input_method_win.cc b/ui/base/ime/input_method_win.cc
|
| index 6ac7e6f1219d2dc86704a87e8ce44893cfe2b7d8..de597845d0839165c8a50e37a9ce4bdcc2cda1cf 100644
|
| --- a/ui/base/ime/input_method_win.cc
|
| +++ b/ui/base/ime/input_method_win.cc
|
| @@ -18,7 +18,7 @@
|
| #include "ui/events/event_constants.h"
|
| #include "ui/events/event_utils.h"
|
| #include "ui/events/keycodes/keyboard_codes.h"
|
| -#include "ui/gfx/win/dpi.h"
|
| +#include "ui/gfx/screen_win.h"
|
| #include "ui/gfx/win/hwnd_util.h"
|
|
|
| namespace {
|
| @@ -223,7 +223,8 @@ void InputMethodWin::OnCaretBoundsChanged(const TextInputClient* client) {
|
| // Tentatively assume that the returned value is DIP (Density Independent
|
| // Pixel). See the comment in text_input_client.h and http://crbug.com/360334.
|
| const gfx::Rect dip_screen_bounds(GetTextInputClient()->GetCaretBounds());
|
| - const gfx::Rect screen_bounds = gfx::win::DIPToScreenRect(dip_screen_bounds);
|
| + const gfx::Rect screen_bounds = gfx::ScreenWin::DIPToScreenRect(
|
| + toplevel_window_handle_, dip_screen_bounds);
|
|
|
| HWND attached_window = toplevel_window_handle_;
|
| // TODO(ime): see comment in TextInputClient::GetCaretBounds(), this
|
| @@ -598,7 +599,8 @@ LRESULT InputMethodWin::OnQueryCharPosition(IMECHARPOSITION* char_positon) {
|
| return 0;
|
| dip_rect = client->GetCaretBounds();
|
| }
|
| - const gfx::Rect rect = gfx::win::DIPToScreenRect(dip_rect);
|
| + const gfx::Rect rect =
|
| + gfx::ScreenWin::DIPToScreenRect(toplevel_window_handle_, dip_rect);
|
|
|
| char_positon->pt.x = rect.x();
|
| char_positon->pt.y = rect.y();
|
|
|