backout f1a7f2af1dce (Bug 981852) because its no longer needed. r=backout

This commit is contained in:
Wes Johnston
2014-04-01 12:23:41 -07:00
parent 58f474abc9
commit 30a9041e14

View File

@@ -2287,13 +2287,8 @@ public class GeckoAppShell
}
@WrapElementForJNI(stubName = "HandleGeckoMessageWrapper")
public static void handleGeckoMessage(final String message) {
ThreadUtils.postToBackgroundThread(new Runnable() {
@Override
public void run() {
sEventDispatcher.dispatchEvent(message);
}
});
public static void handleGeckoMessage(String message) {
sEventDispatcher.dispatchEvent(message);
}
@WrapElementForJNI