Index: ash/magnifier/magnification_controller.h |
diff --git a/ash/magnifier/magnification_controller.h b/ash/magnifier/magnification_controller.h |
index aa7061808bb610547bd658591111936552349023..75d1b2f8f3d78283f77ccdf010676e698af81c1c 100644 |
--- a/ash/magnifier/magnification_controller.h |
+++ b/ash/magnifier/magnification_controller.h |
@@ -47,6 +47,11 @@ class MagnificationController { |
virtual void EnsureRectIsVisible(const gfx::Rect& rect, bool animate) = 0; |
virtual void EnsurePointIsVisible(const gfx::Point& point, bool animate) = 0; |
+ // Returns |point_of_interest_| in MagnificationControllerImpl. This is |
+ // the internal variable to stores the last mouse cursor (or last touched) |
+ // location. This method is only for test purpose. |
+ virtual gfx::Point GetPointOfInterestForTesting() = 0; |
+ |
protected: |
MagnificationController() {} |
}; |