Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8665)

Unified Diff: chrome/test/base/interactive_test_utils_common_views.cc

Issue 1669793002: mac_views_browser: fixed interactive_ui_tests compilation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review fixes Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/base/interactive_test_utils_common_views.cc
diff --git a/chrome/test/base/interactive_test_utils_common_views.cc b/chrome/test/base/interactive_test_utils_common_views.cc
new file mode 100644
index 0000000000000000000000000000000000000000..3b1c59143cb08c9198567ed555692d8fd7ea43ab
--- /dev/null
+++ b/chrome/test/base/interactive_test_utils_common_views.cc
@@ -0,0 +1,40 @@
+// Copyright (c) 2016 The Chromium Authors. All rights reserved.
tapted 2016/02/07 23:15:30 nit: no (c)
themblsha 2016/02/08 17:08:58 Done. It appears that the (c) omission is relative
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Methods compiled on all toolkit-views platforms (including Mac).
+
+#include "chrome/test/base/interactive_test_utils.h"
+
+#include "ui/compositor/layer.h"
+#include "ui/compositor/layer_animator.h"
+#include "ui/views/view.h"
+#include "ui/views/widget/widget.h"
+
+namespace ui_test_utils {
+
+void MoveMouseToCenterAndPress(views::View* view,
+ ui_controls::MouseButton button,
+ int state,
+ const base::Closure& closure) {
+ DCHECK(view);
+ DCHECK(view->GetWidget());
+ // Complete any in-progress animation before sending the events so that the
+ // mouse-event targetting happens reliably, and does not flake because of
+ // unreliable animation state.
+ ui::Layer* layer = view->GetWidget()->GetLayer();
+ if (layer) {
+ ui::LayerAnimator* animator = layer->GetAnimator();
+ if (animator && animator->is_animating())
+ animator->StopAnimating();
+ }
+
+ gfx::Point view_center(view->width() / 2, view->height() / 2);
+ views::View::ConvertPointToScreen(view, &view_center);
+ ui_controls::SendMouseMoveNotifyWhenDone(
+ view_center.x(),
+ view_center.y(),
+ base::Bind(&internal::ClickTask, button, state, closure));
+}
+
+} // namespace ui_test_utils

Powered by Google App Engine
This is Rietveld 408576698