Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2457)

Unified Diff: ash/display/screen_position_controller.h

Issue 2648583003: Handle floating point coordinates from ozone to exosphere (Closed)
Patch Set: added F variant to screen position client. fixed exo tests. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ash/display/screen_position_controller.h
diff --git a/ash/display/screen_position_controller.h b/ash/display/screen_position_controller.h
index 344c2cd56e34a4b4649a2ced98772a5e2b0cf623..5109b31ac90d8e44dea679d946f3350ad29c68ba 100644
--- a/ash/display/screen_position_controller.h
+++ b/ash/display/screen_position_controller.h
@@ -34,8 +34,12 @@ class ASH_EXPORT ScreenPositionController
// aura::client::ScreenPositionClient overrides:
void ConvertPointToScreen(const aura::Window* window,
gfx::Point* point) override;
+ void ConvertPointToScreenF(const aura::Window* window,
+ gfx::PointF* point) override;
void ConvertPointFromScreen(const aura::Window* window,
gfx::Point* point) override;
+ void ConvertPointFromScreenF(const aura::Window* window,
+ gfx::PointF* point) override;
void ConvertHostPointToScreen(aura::Window* window,
gfx::Point* point) override;
void SetBounds(aura::Window* window,

Powered by Google App Engine
This is Rietveld 408576698