| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "content/test/web_layer_tree_view_impl_for_testing.h" | 5 #include "content/test/web_layer_tree_view_impl_for_testing.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/strings/string_number_conversions.h" | 8 #include "base/strings/string_number_conversions.h" |
| 9 #include "base/synchronization/lock.h" | 9 #include "base/synchronization/lock.h" |
| 10 #include "cc/base/switches.h" | 10 #include "cc/base/switches.h" |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 layer_tree_host_->FinishAllRendering(); | 130 layer_tree_host_->FinishAllRendering(); |
| 131 } | 131 } |
| 132 | 132 |
| 133 void WebLayerTreeViewImplForTesting::setDeferCommits(bool defer_commits) { | 133 void WebLayerTreeViewImplForTesting::setDeferCommits(bool defer_commits) { |
| 134 layer_tree_host_->SetDeferCommits(defer_commits); | 134 layer_tree_host_->SetDeferCommits(defer_commits); |
| 135 } | 135 } |
| 136 | 136 |
| 137 void WebLayerTreeViewImplForTesting::Layout() { | 137 void WebLayerTreeViewImplForTesting::Layout() { |
| 138 } | 138 } |
| 139 | 139 |
| 140 void WebLayerTreeViewImplForTesting::ApplyScrollAndScale( | 140 void WebLayerTreeViewImplForTesting::ApplyViewportDeltas( |
| 141 const gfx::Vector2d& scroll_delta, | 141 const gfx::Vector2d& scroll_delta, |
| 142 float page_scale) {} | 142 float page_scale, |
| 143 float top_controls_delta) {} |
| 143 | 144 |
| 144 scoped_ptr<cc::OutputSurface> | 145 scoped_ptr<cc::OutputSurface> |
| 145 WebLayerTreeViewImplForTesting::CreateOutputSurface(bool fallback) { | 146 WebLayerTreeViewImplForTesting::CreateOutputSurface(bool fallback) { |
| 146 return make_scoped_ptr( | 147 return make_scoped_ptr( |
| 147 new cc::OutputSurface(cc::TestContextProvider::Create())); | 148 new cc::OutputSurface(cc::TestContextProvider::Create())); |
| 148 } | 149 } |
| 149 | 150 |
| 150 void WebLayerTreeViewImplForTesting::registerViewportLayers( | 151 void WebLayerTreeViewImplForTesting::registerViewportLayers( |
| 151 const blink::WebLayer* pageScaleLayer, | 152 const blink::WebLayer* pageScaleLayer, |
| 152 const blink::WebLayer* innerViewportScrollLayer, | 153 const blink::WebLayer* innerViewportScrollLayer, |
| (...skipping 17 matching lines...) Expand all Loading... |
| 170 | 171 |
| 171 void WebLayerTreeViewImplForTesting::registerSelection( | 172 void WebLayerTreeViewImplForTesting::registerSelection( |
| 172 const blink::WebSelectionBound& start, | 173 const blink::WebSelectionBound& start, |
| 173 const blink::WebSelectionBound& end) { | 174 const blink::WebSelectionBound& end) { |
| 174 } | 175 } |
| 175 | 176 |
| 176 void WebLayerTreeViewImplForTesting::clearSelection() { | 177 void WebLayerTreeViewImplForTesting::clearSelection() { |
| 177 } | 178 } |
| 178 | 179 |
| 179 } // namespace content | 180 } // namespace content |
| OLD | NEW |