| Index: cc/test/layer_tree_test.cc
|
| diff --git a/cc/test/layer_tree_test.cc b/cc/test/layer_tree_test.cc
|
| index 3c6ff57baeaebe5bf0f899ffd2557d842c06d77a..2c863a236114f6509e023cdd3eaee1b74f38c45c 100644
|
| --- a/cc/test/layer_tree_test.cc
|
| +++ b/cc/test/layer_tree_test.cc
|
| @@ -39,10 +39,9 @@ TestHooks::TestHooks() {}
|
|
|
| TestHooks::~TestHooks() {}
|
|
|
| -DrawResult TestHooks::PrepareToDrawOnThread(
|
| - LayerTreeHostImpl* host_impl,
|
| - LayerTreeHostImpl::FrameData* frame_data,
|
| - DrawResult draw_result) {
|
| +DrawResult TestHooks::PrepareToDrawOnThread(LayerTreeHostImpl* host_impl,
|
| + FrameData* frame_data,
|
| + DrawResult draw_result) {
|
| return draw_result;
|
| }
|
|
|
| @@ -282,7 +281,7 @@ class LayerTreeHostImplForTesting : public LayerTreeHostImpl {
|
| test_hooks_->DrawLayersOnThread(this);
|
| }
|
|
|
| - bool SwapBuffers(const LayerTreeHostImpl::FrameData& frame) override {
|
| + bool SwapBuffers(const FrameData& frame) override {
|
| bool result = LayerTreeHostImpl::SwapBuffers(frame);
|
| test_hooks_->SwapBuffersOnThread(this, result);
|
| return result;
|
|
|