| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/test/automation/window_proxy.h" | 5 #include "chrome/test/automation/window_proxy.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 #include <algorithm> | 8 #include <algorithm> |
| 9 | 9 |
| 10 #include "base/gfx/rect.h" | 10 #include "base/gfx/rect.h" |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "chrome/test/automation/automation_constants.h" | 12 #include "chrome/test/automation/automation_constants.h" |
| 13 #include "chrome/test/automation/automation_messages.h" | 13 #include "chrome/test/automation/automation_messages.h" |
| 14 #include "chrome/test/automation/automation_proxy.h" | 14 #include "chrome/test/automation/automation_proxy.h" |
| 15 #include "chrome/test/automation/browser_proxy.h" | 15 #include "chrome/test/automation/browser_proxy.h" |
| 16 #include "chrome/test/automation/tab_proxy.h" | 16 #include "chrome/test/automation/tab_proxy.h" |
| 17 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
| 18 | 18 |
| 19 bool WindowProxy::SimulateOSClick(const gfx::Point& click, int flags) { | 19 bool WindowProxy::SimulateOSClick(const gfx::Point& click, int flags) { |
| 20 if (!is_valid()) return false; | 20 if (!is_valid()) return false; |
| 21 | 21 |
| 22 return sender_->Send( | 22 return sender_->Send( |
| 23 new AutomationMsg_WindowClick(0, handle_, click, flags)); | 23 new AutomationMsg_WindowClick(0, handle_, click, flags)); |
| 24 } | 24 } |
| 25 | 25 |
| 26 bool WindowProxy::SimulateOSMouseMove(const gfx::Point& location) { | |
| 27 if (!is_valid()) return false; | |
| 28 | |
| 29 return sender_->Send( | |
| 30 new AutomationMsg_WindowMouseMove(0, handle_, location)); | |
| 31 } | |
| 32 | |
| 33 bool WindowProxy::GetWindowTitle(string16* text) { | 26 bool WindowProxy::GetWindowTitle(string16* text) { |
| 34 if (!is_valid()) return false; | 27 if (!is_valid()) return false; |
| 35 | 28 |
| 36 if (!text) { | 29 if (!text) { |
| 37 NOTREACHED(); | 30 NOTREACHED(); |
| 38 return false; | 31 return false; |
| 39 } | 32 } |
| 40 | 33 |
| 41 return sender_->Send(new AutomationMsg_WindowTitle(0, handle_, text)); | 34 return sender_->Send(new AutomationMsg_WindowTitle(0, handle_, text)); |
| 42 } | 35 } |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 bool WindowProxy::IsMaximized(bool* maximized) { | 156 bool WindowProxy::IsMaximized(bool* maximized) { |
| 164 if (!is_valid()) | 157 if (!is_valid()) |
| 165 return false; | 158 return false; |
| 166 | 159 |
| 167 bool result = false; | 160 bool result = false; |
| 168 | 161 |
| 169 sender_->Send(new AutomationMsg_IsWindowMaximized(0, handle_, maximized, | 162 sender_->Send(new AutomationMsg_IsWindowMaximized(0, handle_, maximized, |
| 170 &result)); | 163 &result)); |
| 171 return result; | 164 return result; |
| 172 } | 165 } |
| OLD | NEW |