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

Unified Diff: content/public/test/android/javatests/src/org/chromium/content/browser/test/util/TouchCommon.java

Issue 2708243004: Auto convert content shell tests to JUnit4 (Closed)
Patch Set: Remove test that failed Created 3 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: content/public/test/android/javatests/src/org/chromium/content/browser/test/util/TouchCommon.java
diff --git a/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/TouchCommon.java b/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/TouchCommon.java
index 827ee50486a5d8952ecfbde07c6b4486f92a9e45..066e6d61cf0522178fa668acb91cb384558713f6 100644
--- a/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/TouchCommon.java
+++ b/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/TouchCommon.java
@@ -11,6 +11,7 @@ import android.view.MotionEvent;
import android.view.View;
import android.view.ViewConfiguration;
+import org.chromium.base.Log;
import org.chromium.base.ThreadUtils;
import java.util.concurrent.Callable;
@@ -112,6 +113,7 @@ public class TouchCommon {
int windowXY[] = viewToWindowCoordinates(v, x, y);
int windowX = windowXY[0];
int windowY = windowXY[1];
+ Log.d("#YOLAND", "Cord are " + Integer.toString(windowX) + " " + Integer.toString(windowY));
return singleClickInternal(v.getRootView(), windowX, windowY);
}

Powered by Google App Engine
This is Rietveld 408576698