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

Unified Diff: components/mus/public/cpp/tests/window_server_shelltest_base.cc

Issue 1882423004: Move shell service to toplevel shell namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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: components/mus/public/cpp/tests/window_server_shelltest_base.cc
diff --git a/components/mus/public/cpp/tests/window_server_shelltest_base.cc b/components/mus/public/cpp/tests/window_server_shelltest_base.cc
index 74197fa1b1f18e6f3907702e231ec7bae96afbdb..3f97150a32244986f66cf6d7a507c80293bf19f2 100644
--- a/components/mus/public/cpp/tests/window_server_shelltest_base.cc
+++ b/components/mus/public/cpp/tests/window_server_shelltest_base.cc
@@ -18,15 +18,15 @@ namespace {
const char kTestAppName[] = "mojo:mus_ws_unittests_app";
-class WindowServerShellTestClient : public mojo::test::ShellTestClient {
+class WindowServerShellTestClient : public shell::test::ShellTestClient {
public:
explicit WindowServerShellTestClient(WindowServerShellTestBase* test)
: ShellTestClient(test), test_(test) {}
~WindowServerShellTestClient() override {}
private:
- // mojo::test::ShellTestClient:
- bool AcceptConnection(mojo::Connection* connection) override {
+ // shell::test::ShellTestClient:
+ bool AcceptConnection(shell::Connection* connection) override {
return test_->AcceptConnection(connection);
}
@@ -51,7 +51,7 @@ WindowServerShellTestBase::WindowServerShellTestBase()
WindowServerShellTestBase::~WindowServerShellTestBase() {}
-scoped_ptr<mojo::ShellClient> WindowServerShellTestBase::CreateShellClient() {
+scoped_ptr<shell::ShellClient> WindowServerShellTestBase::CreateShellClient() {
return make_scoped_ptr(new WindowServerShellTestClient(this));
}

Powered by Google App Engine
This is Rietveld 408576698