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

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

Issue 543553002: [Checkstyle] Enable additional name checks for Java. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 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: content/public/android/javatests/src/org/chromium/content/browser/NavigationTest.java
diff --git a/content/public/android/javatests/src/org/chromium/content/browser/NavigationTest.java b/content/public/android/javatests/src/org/chromium/content/browser/NavigationTest.java
index f15c4e60e8bca5c59cee92c8f424aeaab8c94c23..b0e273002a9bdf3fef212107c185518fdf51767e 100644
--- a/content/public/android/javatests/src/org/chromium/content/browser/NavigationTest.java
+++ b/content/public/android/javatests/src/org/chromium/content/browser/NavigationTest.java
@@ -100,12 +100,12 @@ public class NavigationTest extends ContentShellTestBase {
@MediumTest
@Feature({"Navigation"})
public void testPageReload() throws Throwable {
- final String HTML_LOADTIME = "<html><head>" +
+ final String htmlLoadTime = "<html><head>" +
"<script type=\"text/javascript\">var loadTimestamp = new Date().getTime();" +
"function getLoadtime() { return loadTimestamp; }</script></head></html>";
- final String URL_LOADTIME = UrlUtils.encodeHtmlDataUri(HTML_LOADTIME);
+ final String urlLoadTime = UrlUtils.encodeHtmlDataUri(htmlLoadTime);
- ContentShellActivity activity = launchContentShellWithUrl(URL_LOADTIME);
+ ContentShellActivity activity = launchContentShellWithUrl(urlLoadTime);
waitForActiveShellToBeDoneLoading();
ContentViewCore contentViewCore = activity.getActiveContentViewCore();
TestCallbackHelperContainer testCallbackHelperContainer =

Powered by Google App Engine
This is Rietveld 408576698