Bug 783521 - Fix busted function override. r=mfinkle

This commit is contained in:
Kartikaya Gupta 2012-11-27 15:18:01 -05:00
parent ff18bc3e05
commit eeb2edf044
2 changed files with 2 additions and 1 deletions

View File

@ -283,6 +283,7 @@ abstract public class BrowserApp extends GeckoApp
}
}
@Override
void toggleChrome(final boolean aShow) {
mMainHandler.post(new Runnable() {
public void run() {

View File

@ -226,7 +226,7 @@ abstract public class GeckoApp
}
}
void toggleChrome(final Boolean aShow) { }
void toggleChrome(final boolean aShow) { }
void focusChrome() { }