Chromium Code Reviews| Index: ui/aura/desktop_host.h |
| diff --git a/ui/aura/desktop_host.h b/ui/aura/desktop_host.h |
| index b276dead1e1ad6609ba65729ab472eea254ceb13..9470fb2cd2ff2799263df474a3e3ea1658585c6b 100644 |
| --- a/ui/aura/desktop_host.h |
| +++ b/ui/aura/desktop_host.h |
| @@ -61,6 +61,10 @@ class DesktopHost : public MessageLoop::Dispatcher { |
| // Posts |native_event| to the platform's event queue. |
| virtual void PostNativeEvent(const base::NativeEvent& native_event) = 0; |
| + |
| + // Converts the |point| in the desktop's coordinate to native screen's |
|
Daniel Erat
2011/11/22 00:25:32
(see comment in desktop.h)
|
| + // cooridnates. |
| + virtual void ConvertPointToNativeScreen(gfx::Point* point) const = 0; |
|
sky
2011/11/22 00:28:33
How about GetLocationOnScreen and move it beneath
oshima
2011/11/22 01:36:10
Done.
|
| }; |
| } // namespace aura |