Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(437)

Unified Diff: sky/tools/tester/test_harness_impl.cc

Issue 797063002: Make reftests work for sky. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: address review comments Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/tools/tester/test_harness_impl.h ('k') | sky/tools/tester/test_runner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « sky/tools/tester/test_harness_impl.h ('k') | sky/tools/tester/test_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698