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

Unified Diff: android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientFaviconTest.java

Issue 568873002: Start server thread in new TestWebServer.start() method rather than constructor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: silence findbugs static assignment warning 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: android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientFaviconTest.java
diff --git a/android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientFaviconTest.java b/android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientFaviconTest.java
index 973155eb53c1056b9a164f0d6e7940b7ca7946c4..f70e7a92785a06bb4fa7a9c612eb89f707af7485 100644
--- a/android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientFaviconTest.java
+++ b/android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientFaviconTest.java
@@ -89,7 +89,7 @@ public class AwContentsClientFaviconTest extends AwTestBase {
protected void setUp() throws Exception {
super.setUp();
AwContents.setShouldDownloadFavicons();
- mWebServer = new TestWebServer(false);
+ mWebServer = TestWebServer.start();
}
private void init(TestAwContentsClientBase contentsClient) throws Exception {

Powered by Google App Engine
This is Rietveld 408576698