| OLD | NEW |
| 1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "web_layer_tree_view_impl.h" | 5 #include "web_layer_tree_view_impl.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/string_number_conversions.h" | 8 #include "base/string_number_conversions.h" |
| 9 #include "cc/font_atlas.h" | 9 #include "cc/font_atlas.h" |
| 10 #include "cc/input_handler.h" | 10 #include "cc/input_handler.h" |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 WebSize WebLayerTreeViewImpl::layoutViewportSize() const | 104 WebSize WebLayerTreeViewImpl::layoutViewportSize() const |
| 105 { | 105 { |
| 106 return m_layerTreeHost->layoutViewportSize(); | 106 return m_layerTreeHost->layoutViewportSize(); |
| 107 } | 107 } |
| 108 | 108 |
| 109 WebSize WebLayerTreeViewImpl::deviceViewportSize() const | 109 WebSize WebLayerTreeViewImpl::deviceViewportSize() const |
| 110 { | 110 { |
| 111 return m_layerTreeHost->deviceViewportSize(); | 111 return m_layerTreeHost->deviceViewportSize(); |
| 112 } | 112 } |
| 113 | 113 |
| 114 WebFloatPoint WebLayerTreeViewImpl::adjustEventPointForPinchZoom(const WebFloatP
oint& point) const | |
| 115 { | |
| 116 return m_layerTreeHost->adjustEventPointForPinchZoom(point); | |
| 117 } | |
| 118 | |
| 119 void WebLayerTreeViewImpl::setDeviceScaleFactor(const float deviceScaleFactor) | 114 void WebLayerTreeViewImpl::setDeviceScaleFactor(const float deviceScaleFactor) |
| 120 { | 115 { |
| 121 m_layerTreeHost->setDeviceScaleFactor(deviceScaleFactor); | 116 m_layerTreeHost->setDeviceScaleFactor(deviceScaleFactor); |
| 122 } | 117 } |
| 123 | 118 |
| 124 float WebLayerTreeViewImpl::deviceScaleFactor() const | 119 float WebLayerTreeViewImpl::deviceScaleFactor() const |
| 125 { | 120 { |
| 126 return m_layerTreeHost->deviceScaleFactor(); | 121 return m_layerTreeHost->deviceScaleFactor(); |
| 127 } | 122 } |
| 128 | 123 |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 { | 299 { |
| 305 m_client->didCompleteSwapBuffers(); | 300 m_client->didCompleteSwapBuffers(); |
| 306 } | 301 } |
| 307 | 302 |
| 308 void WebLayerTreeViewImpl::scheduleComposite() | 303 void WebLayerTreeViewImpl::scheduleComposite() |
| 309 { | 304 { |
| 310 m_client->scheduleComposite(); | 305 m_client->scheduleComposite(); |
| 311 } | 306 } |
| 312 | 307 |
| 313 } // namespace WebKit | 308 } // namespace WebKit |
| OLD | NEW |