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

Unified Diff: chrome/android/javatests/src/org/chromium/chrome/browser/customtabs/CustomTabActivityTest.java

Issue 2296043003: Rename Lo-Fi previews to lite pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@newLoFiInfoBarAddTests
Patch Set: tbansal comments Created 4 years, 3 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/android/javatests/src/org/chromium/chrome/browser/customtabs/CustomTabActivityTest.java
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/customtabs/CustomTabActivityTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/customtabs/CustomTabActivityTest.java
index f9af63a3514859db30cd3c3775d7e2c1801f4727..820fe6071a70c20abafd335b4eadd6a2312261d1 100644
--- a/chrome/android/javatests/src/org/chromium/chrome/browser/customtabs/CustomTabActivityTest.java
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/customtabs/CustomTabActivityTest.java
@@ -1214,7 +1214,7 @@ public class CustomTabActivityTest extends CustomTabActivityTestBase {
*/
@SmallTest
@CommandLineFlags.Add({"enable-spdy-proxy-auth", "data-reduction-proxy-lo-fi=always-on",
- "enable-data-reduction-proxy-lo-fi-preview"})
+ "enable-data-reduction-proxy-lite-page"})
@RetryOnFailure
public void testLaunchWebLiteURL() throws Exception {
final String testUrl = WEBLITE_PREFIX + mTestPage;
@@ -1244,7 +1244,7 @@ public class CustomTabActivityTest extends CustomTabActivityTestBase {
* Reduction Proxy is not using Lo-Fi.
*/
@SmallTest
- @CommandLineFlags.Add({"enable-spdy-proxy-auth", "enable-data-reduction-proxy-lo-fi-preview"})
+ @CommandLineFlags.Add({"enable-spdy-proxy-auth", "enable-data-reduction-proxy-lite-page"})
@RetryOnFailure
public void testLaunchWebLiteURLNoLoFi() throws Exception {
final String testUrl = WEBLITE_PREFIX + mTestPage;
@@ -1260,7 +1260,7 @@ public class CustomTabActivityTest extends CustomTabActivityTestBase {
*/
@SmallTest
@CommandLineFlags.Add({"data-reduction-proxy-lo-fi=always-on",
- "enable-data-reduction-proxy-lo-fi-preview"})
+ "enable-data-reduction-proxy-lite-page"})
@RetryOnFailure
public void testLaunchWebLiteURLNoDataReductionProxy() throws Exception {
final String testUrl = WEBLITE_PREFIX + mTestPage;
@@ -1276,7 +1276,7 @@ public class CustomTabActivityTest extends CustomTabActivityTestBase {
*/
@SmallTest
@CommandLineFlags.Add({"enable-spdy-proxy-auth", "data-reduction-proxy-lo-fi=always-on",
- "enable-data-reduction-proxy-lo-fi-preview"})
+ "enable-data-reduction-proxy-lite-page"})
@RetryOnFailure
public void testLaunchHttpsWebLiteURL() throws Exception {
final String testUrl = WEBLITE_PREFIX + mTestPage.replaceFirst("http", "https");
@@ -1292,7 +1292,7 @@ public class CustomTabActivityTest extends CustomTabActivityTestBase {
*/
@SmallTest
@CommandLineFlags.Add({"enable-spdy-proxy-auth", "data-reduction-proxy-lo-fi=always-on",
- "enable-data-reduction-proxy-lo-fi-preview"})
+ "enable-data-reduction-proxy-lite-page"})
@RetryOnFailure
public void testLaunchNonWebLiteURL() throws Exception {
final String testUrl = mTestPage2 + "/?lite_url=" + mTestPage;

Powered by Google App Engine
This is Rietveld 408576698