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

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

Issue 715123002: Rename sky::TestObserver to sky::TestHarness (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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_runner.h ('k') | sky/viewer/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/tools/tester/test_runner.cc
diff --git a/sky/tools/tester/test_runner.cc b/sky/tools/tester/test_runner.cc
index 282531bb7b676d12e0b3a91c3787be6b15f30014..f23349e81bd8c88f34e2badf12504fd3582dc505 100644
--- a/sky/tools/tester/test_runner.cc
+++ b/sky/tools/tester/test_runner.cc
@@ -15,14 +15,14 @@ namespace tester {
TestRunner::TestRunner(TestRunnerClient* client, mojo::View* container,
const std::string& url)
- : test_observer_factory_(this),
+ : test_harness_factory_(this),
client_(client),
weak_ptr_factory_(this) {
CHECK(client);
scoped_ptr<mojo::ServiceProviderImpl> exported_services(
new mojo::ServiceProviderImpl());
- exported_services->AddService(&test_observer_factory_);
+ exported_services->AddService(&test_harness_factory_);
container->Embed(url, exported_services.Pass());
}
« no previous file with comments | « sky/tools/tester/test_runner.h ('k') | sky/viewer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698