| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "android_webview/browser/test/rendering_test.h" | 5 #include "android_webview/browser/test/rendering_test.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "android_webview/browser/browser_view_renderer.h" | 9 #include "android_webview/browser/browser_view_renderer.h" |
| 10 #include "android_webview/browser/child_frame.h" | 10 #include "android_webview/browser/child_frame.h" |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 ui_task_runner_->PostTask(FROM_HERE, run_loop_.QuitWhenIdleClosure()); | 111 ui_task_runner_->PostTask(FROM_HERE, run_loop_.QuitWhenIdleClosure()); |
| 112 } | 112 } |
| 113 | 113 |
| 114 content::SynchronousCompositor* RenderingTest::ActiveCompositor() const { | 114 content::SynchronousCompositor* RenderingTest::ActiveCompositor() const { |
| 115 return browser_view_renderer_->GetActiveCompositorForTesting(); | 115 return browser_view_renderer_->GetActiveCompositorForTesting(); |
| 116 } | 116 } |
| 117 | 117 |
| 118 std::unique_ptr<cc::CompositorFrame> RenderingTest::ConstructEmptyFrame() { | 118 std::unique_ptr<cc::CompositorFrame> RenderingTest::ConstructEmptyFrame() { |
| 119 std::unique_ptr<cc::CompositorFrame> compositor_frame( | 119 std::unique_ptr<cc::CompositorFrame> compositor_frame( |
| 120 new cc::CompositorFrame); | 120 new cc::CompositorFrame); |
| 121 compositor_frame->metadata.begin_frame_ack = | 121 compositor_frame->metadata.begin_frame_ack = cc::BeginFrameAck(0, 1, 1, true); |
| 122 cc::BeginFrameAck(0, 1, 1, 0, true); | |
| 123 std::unique_ptr<cc::RenderPass> root_pass(cc::RenderPass::Create()); | 122 std::unique_ptr<cc::RenderPass> root_pass(cc::RenderPass::Create()); |
| 124 gfx::Rect viewport(browser_view_renderer_->size()); | 123 gfx::Rect viewport(browser_view_renderer_->size()); |
| 125 root_pass->SetNew(1, viewport, viewport, gfx::Transform()); | 124 root_pass->SetNew(1, viewport, viewport, gfx::Transform()); |
| 126 compositor_frame->render_pass_list.push_back(std::move(root_pass)); | 125 compositor_frame->render_pass_list.push_back(std::move(root_pass)); |
| 127 return compositor_frame; | 126 return compositor_frame; |
| 128 } | 127 } |
| 129 | 128 |
| 130 std::unique_ptr<cc::CompositorFrame> RenderingTest::ConstructFrame( | 129 std::unique_ptr<cc::CompositorFrame> RenderingTest::ConstructFrame( |
| 131 cc::ResourceId resource_id) { | 130 cc::ResourceId resource_id) { |
| 132 std::unique_ptr<cc::CompositorFrame> compositor_frame(ConstructEmptyFrame()); | 131 std::unique_ptr<cc::CompositorFrame> compositor_frame(ConstructEmptyFrame()); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 159 void RenderingTest::PostInvalidate() { | 158 void RenderingTest::PostInvalidate() { |
| 160 if (window_) | 159 if (window_) |
| 161 window_->PostInvalidate(); | 160 window_->PostInvalidate(); |
| 162 } | 161 } |
| 163 | 162 |
| 164 gfx::Point RenderingTest::GetLocationOnScreen() { | 163 gfx::Point RenderingTest::GetLocationOnScreen() { |
| 165 return gfx::Point(); | 164 return gfx::Point(); |
| 166 } | 165 } |
| 167 | 166 |
| 168 } // namespace android_webview | 167 } // namespace android_webview |
| OLD | NEW |