CompileStrategy now passes the user agents into JUnitShell#maybeCompileForWebMode to restrict the number of permutations.

Patch by: jlabanca
Review by: jat



git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@6445 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/junit/CompileStrategy.java b/user/src/com/google/gwt/junit/CompileStrategy.java
index abc2df8..b1417e9 100644
--- a/user/src/com/google/gwt/junit/CompileStrategy.java
+++ b/user/src/com/google/gwt/junit/CompileStrategy.java
@@ -184,7 +184,8 @@
 
     strategy.processModule(moduleDef);
 
-    junitShell.maybeCompileForWebMode(syntheticModuleName);
+    junitShell.maybeCompileForWebMode(syntheticModuleName,
+        JUnitShell.getRemoteUserAgents());
 
     return moduleDef;
   }