| Index: mojo/edk/test/simple_test_thread.cc
|
| diff --git a/mojo/edk/test/simple_test_thread.cc b/mojo/edk/test/simple_test_thread.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6cf9f11a796f346987b1b6def1dd74eee7011304
|
| --- /dev/null
|
| +++ b/mojo/edk/test/simple_test_thread.cc
|
| @@ -0,0 +1,25 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "mojo/edk/test/simple_test_thread.h"
|
| +
|
| +#include "base/logging.h"
|
| +
|
| +namespace mojo {
|
| +namespace test {
|
| +
|
| +SimpleTestThread::SimpleTestThread() : thread_(this, "SimpleTestThread") {}
|
| +
|
| +SimpleTestThread::~SimpleTestThread() {}
|
| +
|
| +void SimpleTestThread::Start() {
|
| + thread_.Start();
|
| +}
|
| +
|
| +void SimpleTestThread::Join() {
|
| + thread_.Join();
|
| +}
|
| +
|
| +} // namespace test
|
| +} // namespace mojo
|
|
|