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

Unified Diff: webkit/compositor_bindings/web_layer_tree_view_impl_for_testing.cc

Issue 13637017: Delete layout_viewport_size. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android Created 7 years, 8 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
« no previous file with comments | « webkit/compositor_bindings/web_layer_tree_view_impl_for_testing.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/compositor_bindings/web_layer_tree_view_impl_for_testing.cc
diff --git a/webkit/compositor_bindings/web_layer_tree_view_impl_for_testing.cc b/webkit/compositor_bindings/web_layer_tree_view_impl_for_testing.cc
index 5b27381a051d7b3a14aab1982193cc42da994847..c635a2533818292aae18bcd1982b373442cc91b1 100644
--- a/webkit/compositor_bindings/web_layer_tree_view_impl_for_testing.cc
+++ b/webkit/compositor_bindings/web_layer_tree_view_impl_for_testing.cc
@@ -76,13 +76,13 @@ void WebLayerTreeViewImplForTesting::clearRootLayer() {
}
void WebLayerTreeViewImplForTesting::setViewportSize(
- const WebSize& layout_viewport_size,
+ const WebSize& unused_deprecated,
const WebSize& device_viewport_size) {
- layer_tree_host_->SetViewportSize(layout_viewport_size, device_viewport_size);
+ layer_tree_host_->SetViewportSize(device_viewport_size);
}
WebSize WebLayerTreeViewImplForTesting::layoutViewportSize() const {
- return layer_tree_host_->layout_viewport_size();
+ return layer_tree_host_->device_viewport_size();
}
WebSize WebLayerTreeViewImplForTesting::deviceViewportSize() const {
« no previous file with comments | « webkit/compositor_bindings/web_layer_tree_view_impl_for_testing.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698