Bug 663803 - Zoomed view implementation using render document r=mcomella,snorp

This commit is contained in:
dominique vincent
2015-01-21 05:59:23 +01:00
parent baeec9f653
commit 40e211f525
18 changed files with 835 additions and 20 deletions

View File

@@ -96,6 +96,14 @@ public final class ThreadUtils {
sUiHandler.post(runnable);
}
public static void postDelayedToUiThread(Runnable runnable, long timeout) {
sUiHandler.postDelayed(runnable, timeout);
}
public static void removeCallbacksFromUiThread(Runnable runnable) {
sUiHandler.removeCallbacks(runnable);
}
public static Thread getBackgroundThread() {
return sBackgroundThread;
}