Merge "Fix WebViewUpdateService timeout code." into lmp-dev

This commit is contained in:
Torne (Richard Coles)
2014-08-01 17:48:51 +00:00
committed by Android (Google) Code Review

View File

@@ -117,7 +117,7 @@ public class WebViewUpdateService extends SystemService {
final long NS_PER_MS = 1000000;
final long timeoutTimeMs = System.nanoTime() / NS_PER_MS + WAIT_TIMEOUT_MS;
boolean relroReady = false;
boolean relroReady = (is64Bit ? mRelroReady64Bit : mRelroReady32Bit);
synchronized (WebViewUpdateService.this) {
while (!relroReady) {
final long timeNowMs = System.nanoTime() / NS_PER_MS;