Bug 1425262 - 3. Follow-up to fix wrong comment; r=me

Fix comment referencing support for transformation matrix.
This commit is contained in:
Jim Chen 2017-12-20 12:14:01 -05:00
parent 98541cb134
commit 52370a906b

View File

@ -45,12 +45,10 @@ public class GeckoDisplay {
/**
* Optional callback. The display's coordinates on the screen has changed. Must be
* called on the application main thread. Together with the transformation matrix, the
* screen origin determines how a point on the display maps to a point on the screen.
* called on the application main thread.
*
* @param left The X coordinate of the display on the screen, in screen pixels.
* @param top The Y coordinate of the display on the screen, in screen pixels.
* @see #transformationMatrixChanged(Matrix)
*/
public void screenOriginChanged(final int left, final int top) {
mSession.onScreenOriginChanged(left, top);