diff options
Diffstat (limited to 'chrome/test/automation/window_proxy.cc')
-rw-r--r-- | chrome/test/automation/window_proxy.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/test/automation/window_proxy.cc b/chrome/test/automation/window_proxy.cc index eea1ced..cb672d3 100644 --- a/chrome/test/automation/window_proxy.cc +++ b/chrome/test/automation/window_proxy.cc @@ -27,14 +27,14 @@ bool WindowProxy::GetHWND(HWND* handle) const { return sender_->Send(new AutomationMsg_WindowHWND(0, handle_, handle)); } +#endif // defined(OS_WIN) -bool WindowProxy::SimulateOSClick(const POINT& click, int flags) { +bool WindowProxy::SimulateOSClick(const gfx::Point& click, int flags) { if (!is_valid()) return false; return sender_->Send( new AutomationMsg_WindowClick(0, handle_, click, flags)); } -#endif // defined(OS_WIN) bool WindowProxy::GetWindowTitle(string16* text) { if (!is_valid()) return false; |