Bug 709230 - Part 3: annotate the remaining Robocop entry points. r=gbrown,rnewman

This commit is contained in:
Chris Kitching
2013-11-18 21:09:00 -08:00
parent 7dc38a2c19
commit 068964b99f
20 changed files with 83 additions and 22 deletions

View File

@@ -392,7 +392,6 @@ public class GeckoAppShell
} catch (NoSuchElementException e) {}
}
/* This method is referenced by Robocop via reflection. */
public static void sendEventToGecko(GeckoEvent e) {
if (GeckoThread.checkLaunchState(GeckoThread.LaunchState.GeckoRunning)) {
notifyGeckoOfEvent(e);
@@ -2322,8 +2321,6 @@ public class GeckoAppShell
* with an event that is currently being processed has the properly-defined behaviour that
* any added listeners will not be invoked on the event currently being processed, but
* will be invoked on future events of that type.
*
* This method is referenced by Robocop via reflection.
*/
public static void registerEventListener(String event, GeckoEventListener listener) {
sEventDispatcher.registerEventListener(event, listener);
@@ -2339,8 +2336,6 @@ public class GeckoAppShell
* with an event that is currently being processed has the properly-defined behaviour that
* any removed listeners will still be invoked on the event currently being processed, but
* will not be invoked on future events of that type.
*
* This method is referenced by Robocop via reflection.
*/
public static void unregisterEventListener(String event, GeckoEventListener listener) {
sEventDispatcher.unregisterEventListener(event, listener);