| Index: mojo/edk/system/test_utils.cc
|
| diff --git a/third_party/mojo/src/mojo/edk/system/test_utils.cc b/mojo/edk/system/test_utils.cc
|
| similarity index 90%
|
| copy from third_party/mojo/src/mojo/edk/system/test_utils.cc
|
| copy to mojo/edk/system/test_utils.cc
|
| index 8bd16ebc37a8d4fe05223b718bfbf3ecd968ee7b..49e346b895cb62cc76d6468da51f81d460e752bb 100644
|
| --- a/third_party/mojo/src/mojo/edk/system/test_utils.cc
|
| +++ b/mojo/edk/system/test_utils.cc
|
| @@ -12,7 +12,7 @@
|
| #include "build/build_config.h"
|
|
|
| namespace mojo {
|
| -namespace system {
|
| +namespace edk {
|
| namespace test {
|
|
|
| MojoDeadline DeadlineFromMilliseconds(unsigned milliseconds) {
|
| @@ -69,6 +69,15 @@ MojoDeadline Stopwatch::Elapsed() {
|
| return static_cast<MojoDeadline>(result);
|
| }
|
|
|
| +
|
| +MojoSystemTest::MojoSystemTest()
|
| + : test_io_thread_(base::TestIOThread::kAutoStart),
|
| + ipc_support_(test_io_thread_.task_runner()) {
|
| +}
|
| +
|
| +MojoSystemTest::~MojoSystemTest() {
|
| +}
|
| +
|
| } // namespace test
|
| -} // namespace system
|
| +} // namespace edk
|
| } // namespace mojo
|
|
|