Index: services/ui/public/cpp/tests/window_server_shelltest_base.h |
diff --git a/services/ui/public/cpp/tests/window_server_shelltest_base.h b/services/ui/public/cpp/tests/window_server_shelltest_base.h |
index 01d95478b8c97b5dfcdbc309ba9cf074b7b0dfe4..ad028711a56f7a9297b65a0d0b11725799fee1dd 100644 |
--- a/services/ui/public/cpp/tests/window_server_shelltest_base.h |
+++ b/services/ui/public/cpp/tests/window_server_shelltest_base.h |
@@ -7,23 +7,23 @@ |
#include "base/macros.h" |
#include "services/shell/public/cpp/connection.h" |
-#include "services/shell/public/cpp/shell_test.h" |
+#include "services/shell/public/cpp/service_test.h" |
namespace ui { |
-// Base class for all window manager shelltests to perform some common setup. |
-class WindowServerShellTestBase : public shell::test::ShellTest { |
+// Base class for all window manager ServiceTests to perform some common setup. |
+class WindowServerServiceTestBase : public shell::test::ServiceTest { |
public: |
- WindowServerShellTestBase(); |
- ~WindowServerShellTestBase() override; |
+ WindowServerServiceTestBase(); |
+ ~WindowServerServiceTestBase() override; |
virtual bool OnConnect(shell::Connection* connection) = 0; |
private: |
- // shell::test::ShellTest: |
+ // shell::test::ServiceTest: |
std::unique_ptr<shell::Service> CreateService() override; |
- DISALLOW_COPY_AND_ASSIGN(WindowServerShellTestBase); |
+ DISALLOW_COPY_AND_ASSIGN(WindowServerServiceTestBase); |
}; |
} // namespace ui |