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/browser/automation/ui_controls.h" | 5 #include "chrome/browser/automation/ui_controls.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 #include "base/ref_counted.h" | 9 #include "base/ref_counted.h" |
10 #include "base/task.h" | 10 #include "base/task.h" |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 int state, Task* task) { | 336 int state, Task* task) { |
337 DCHECK(view); | 337 DCHECK(view); |
338 DCHECK(view->GetWidget()); | 338 DCHECK(view->GetWidget()); |
339 gfx::Point view_center(view->width() / 2, view->height() / 2); | 339 gfx::Point view_center(view->width() / 2, view->height() / 2); |
340 views::View::ConvertPointToScreen(view, &view_center); | 340 views::View::ConvertPointToScreen(view, &view_center); |
341 SendMouseMove(view_center.x(), view_center.y()); | 341 SendMouseMove(view_center.x(), view_center.y()); |
342 SendMouseEventsNotifyWhenDone(button, state, task); | 342 SendMouseEventsNotifyWhenDone(button, state, task); |
343 } | 343 } |
344 | 344 |
345 } // ui_controls | 345 } // ui_controls |
OLD | NEW |