Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef COMPONENTS_MUS_PUBLIC_CPP_TESTS_WINDOW_MANAGER_SHELLTEST_BASE_H_ | |
| 6 #define COMPONENTS_MUS_PUBLIC_CPP_TESTS_WINDOW_MANAGER_SHELLTEST_BASE_H_ | |
| 7 | |
| 8 #include "base/macros.h" | |
| 9 #include "mojo/shell/public/cpp/connection.h" | |
| 10 #include "mojo/shell/public/cpp/shell_test.h" | |
| 11 | |
| 12 namespace mus { | |
| 13 | |
| 14 // Base class for all window manager shelltests to perform some common setup. | |
| 15 class WindowManagerShellTestBase : public mojo::test::ShellTest { | |
|
sky
2016/03/09 00:50:42
WindowManager->WindowServer
| |
| 16 public: | |
| 17 WindowManagerShellTestBase(); | |
| 18 ~WindowManagerShellTestBase() override; | |
| 19 | |
| 20 virtual bool AcceptConnection(mojo::Connection* connection) = 0; | |
| 21 | |
| 22 private: | |
| 23 // mojo::test::ShellTest: | |
| 24 scoped_ptr<mojo::ShellClient> CreateShellClient() override; | |
| 25 | |
| 26 DISALLOW_COPY_AND_ASSIGN(WindowManagerShellTestBase); | |
| 27 }; | |
| 28 | |
| 29 } // namespace mus | |
| 30 | |
| 31 #endif // COMPONENTS_MUS_PUBLIC_CPP_TESTS_WINDOW_MANAGER_SHELLTEST_BASE_H_ | |
| OLD | NEW |