Bug 845612 - Add @Override annotations for implemented interfaces. r=kats

This commit is contained in:
Brian Nicholson
2013-02-26 21:48:00 -08:00
parent a01c2f3bd9
commit 1c31a98bcf
75 changed files with 427 additions and 12 deletions

View File

@@ -118,9 +118,11 @@ class SubdocumentScrollHelper implements GeckoEventListener {
// GeckoEventListener implementation
@Override
public void handleMessage(final String event, final JSONObject message) {
// this comes in on the gecko thread; hand off the handling to the UI thread
mUiHandler.post(new Runnable() {
@Override
public void run() {
Log.i(LOGTAG, "Got message: " + event);
try {