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

Unified Diff: components/cronet/android/test/javatests/src/org/chromium/net/SdchTest.java

Issue 2489303003: [Cronet] Fix SdchTest.DictionaryAddedObserver (Closed)
Patch Set: Created 4 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/cronet/android/test/javatests/src/org/chromium/net/SdchTest.java
diff --git a/components/cronet/android/test/javatests/src/org/chromium/net/SdchTest.java b/components/cronet/android/test/javatests/src/org/chromium/net/SdchTest.java
index 418748fac9e6acfa7009a461147a59ef8d303d13..00a505e9fbe154a9bab97fd5ce4777f40f772de5 100644
--- a/components/cronet/android/test/javatests/src/org/chromium/net/SdchTest.java
+++ b/components/cronet/android/test/javatests/src/org/chromium/net/SdchTest.java
@@ -147,10 +147,11 @@ public class SdchTest extends CronetTestBase {
}
private static class DictionaryAddedObserver extends SdchObserver {
- ConditionVariable mBlock = new ConditionVariable();
+ private final ConditionVariable mBlock;
public DictionaryAddedObserver(String targetUrl, long contextAdapter) {
super(targetUrl, contextAdapter);
+ mBlock = new ConditionVariable();
}
@Override
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698