| Index: sky/tools/tester/test_harness_impl.cc
|
| diff --git a/sky/tools/tester/test_harness_impl.cc b/sky/tools/tester/test_harness_impl.cc
|
| index 79a3f75f7239c386465ee82ebfc593b4fbc19a1c..882aff34f212d06b4cfd5dd23057a1e808580ac2 100644
|
| --- a/sky/tools/tester/test_harness_impl.cc
|
| +++ b/sky/tools/tester/test_harness_impl.cc
|
| @@ -20,9 +20,10 @@ TestHarnessImpl::TestHarnessImpl(TestRunner* test_runner)
|
| TestHarnessImpl::~TestHarnessImpl() {
|
| }
|
|
|
| -void TestHarnessImpl::OnTestComplete(const mojo::String& test_result) {
|
| +void TestHarnessImpl::OnTestComplete(const mojo::String& test_result,
|
| + const mojo::Array<uint8_t> pixels) {
|
| if (test_runner_)
|
| - test_runner_->OnTestComplete(test_result);
|
| + test_runner_->OnTestComplete(test_result, pixels);
|
| }
|
|
|
| void TestHarnessImpl::DispatchInputEvent(mojo::EventPtr event) {
|
|
|