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

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: cleanup 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
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..04fab3527bf9ba6d011de7bd08fc625a10feb25a 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::String& pixels) {
if (test_runner_)
- test_runner_->OnTestComplete(test_result);
+ test_runner_->OnTestComplete(test_result, pixels);
}
void TestHarnessImpl::DispatchInputEvent(mojo::EventPtr event) {

Powered by Google App Engine
This is Rietveld 408576698