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

Unified Diff: content/public/android/javatests/src/org/chromium/content/browser/InterstitialPageTest.java

Issue 691623002: [Android] Remove non-static version of TouchCommon. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 2 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/android/javatests/src/org/chromium/content/browser/InterstitialPageTest.java
diff --git a/content/public/android/javatests/src/org/chromium/content/browser/InterstitialPageTest.java b/content/public/android/javatests/src/org/chromium/content/browser/InterstitialPageTest.java
index fcccd593d2ba48f84c657b0561b24dac045dcc1e..1c3b07925b3391fa70a8daf9ceb7b26052dc74a0 100644
--- a/content/public/android/javatests/src/org/chromium/content/browser/InterstitialPageTest.java
+++ b/content/public/android/javatests/src/org/chromium/content/browser/InterstitialPageTest.java
@@ -123,8 +123,7 @@ public class InterstitialPageTest extends ContentShellTestBase {
assertTrue("Interstitial never shown.", waitForInterstitial(true));
assertTrue("WebContentsObserver not notified of interstitial showing",
observer.isInterstitialShowing());
- TouchCommon touchCommon = new TouchCommon(this);
- touchCommon.singleClickViewRelative(getContentViewCore().getContainerView(), 10, 10);
+ TouchCommon.singleClickViewRelative(getContentViewCore().getContainerView(), 10, 10);
assertTrue("Interstitial never hidden.", waitForInterstitial(false));
assertTrue("WebContentsObserver not notified of interstitial hiding",
!observer.isInterstitialShowing());

Powered by Google App Engine
This is Rietveld 408576698