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

Unified Diff: chrome/test/android/javatests/src/org/chromium/chrome/test/util/TabStripUtils.java

Issue 2774443002: chrome/android: Push EventFilters into the Layout implementations. (Closed)
Patch Set: fix for re-landing Created 3 years, 9 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
« no previous file with comments | « chrome/android/java_sources.gni ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/android/javatests/src/org/chromium/chrome/test/util/TabStripUtils.java
diff --git a/chrome/test/android/javatests/src/org/chromium/chrome/test/util/TabStripUtils.java b/chrome/test/android/javatests/src/org/chromium/chrome/test/util/TabStripUtils.java
index 2fb10611f48ad2bf5e578c62440184bea1dc0490..e796fecbd43f5e8aa5c54a896f9a872be66c6fa1 100644
--- a/chrome/test/android/javatests/src/org/chromium/chrome/test/util/TabStripUtils.java
+++ b/chrome/test/android/javatests/src/org/chromium/chrome/test/util/TabStripUtils.java
@@ -80,7 +80,7 @@ public class TabStripUtils {
base.getInstrumentation().runOnMainSync(new Runnable() {
@Override
public void run() {
- manager.click(0, x, y, false, 0);
+ manager.simulateClick(x, y, false, 0);
}
});
}
@@ -98,7 +98,7 @@ public class TabStripUtils {
base.getInstrumentation().runOnMainSync(new Runnable() {
@Override
public void run() {
- manager.click(0, x, y, false, 0);
+ manager.simulateClick(x, y, false, 0);
}
});
}
@@ -116,7 +116,7 @@ public class TabStripUtils {
base.getInstrumentation().runOnMainSync(new Runnable() {
@Override
public void run() {
- manager.onLongPress(0, x, y);
+ manager.simulateLongPress(x, y);
}
});
}
« no previous file with comments | « chrome/android/java_sources.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698