| Index: ash/host/ash_window_tree_host_platform.cc
|
| diff --git a/ash/host/ash_window_tree_host_platform.cc b/ash/host/ash_window_tree_host_platform.cc
|
| index 1dc61e3cb580183726905232c6fc760b0639f411..a268db387a45ff9e24835916bbf2a8df038e468e 100644
|
| --- a/ash/host/ash_window_tree_host_platform.cc
|
| +++ b/ash/host/ash_window_tree_host_platform.cc
|
| @@ -90,9 +90,9 @@ gfx::Transform AshWindowTreeHostPlatform::GetInverseRootTransform() const {
|
| return transformer_helper_.GetInverseTransform();
|
| }
|
|
|
| -void AshWindowTreeHostPlatform::UpdateRootWindowSize(
|
| - const gfx::Size& host_size) {
|
| - transformer_helper_.UpdateWindowSize(host_size);
|
| +void AshWindowTreeHostPlatform::UpdateRootWindowSizeInPixels(
|
| + const gfx::Size& host_size_in_pixels) {
|
| + transformer_helper_.UpdateWindowSize(host_size_in_pixels);
|
| }
|
|
|
| void AshWindowTreeHostPlatform::OnCursorVisibilityChangedNative(bool show) {
|
|
|