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

Unified Diff: services/ui/public/cpp/tests/window_server_shelltest_base.cc

Issue 2215133002: Change signature of OnConnect (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cleanup
Patch Set: . Created 4 years, 4 months 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: services/ui/public/cpp/tests/window_server_shelltest_base.cc
diff --git a/services/ui/public/cpp/tests/window_server_shelltest_base.cc b/services/ui/public/cpp/tests/window_server_shelltest_base.cc
index c34ce7f13d64de9cd008644f0b71acd472547132..9ef29be58def46294e9df199ae86399c06c47beb 100644
--- a/services/ui/public/cpp/tests/window_server_shelltest_base.cc
+++ b/services/ui/public/cpp/tests/window_server_shelltest_base.cc
@@ -28,8 +28,9 @@ class WindowServerServiceTestClient : public shell::test::ServiceTestClient {
private:
// shell::test::ServiceTestClient:
- bool OnConnect(shell::Connection* connection) override {
- return test_->OnConnect(connection);
+ bool OnConnect(const shell::Identity& remote_identity,
+ shell::InterfaceRegistry* registry) override {
+ return test_->OnConnect(remote_identity, registry);
}
WindowServerServiceTestBase* test_;
« no previous file with comments | « services/ui/public/cpp/tests/window_server_shelltest_base.h ('k') | services/ui/public/cpp/tests/window_server_test_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698