| 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 8f140ba9085475b8ad9daee4a5b40b92fdbdbcdb..69f8f3770f0f16a77f4c8dfb59bb158a3f128946 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) {
|
|
|