Bug 709230 - Part 3: annotate the remaining Robocop entry points. r=gbrown,rnewman
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user