| Index: ui/base/test/user_interactive_test_case.cc
|
| diff --git a/mojo/public/cpp/system/message.cc b/ui/base/test/user_interactive_test_case.cc
|
| similarity index 52%
|
| copy from mojo/public/cpp/system/message.cc
|
| copy to ui/base/test/user_interactive_test_case.cc
|
| index 09d8d46e6dd15407bd123489ab8bdacdfef381c6..de28c627ed1cdb08bc7cbb75ef9bb9797159eb16 100644
|
| --- a/mojo/public/cpp/system/message.cc
|
| +++ b/ui/base/test/user_interactive_test_case.cc
|
| @@ -2,12 +2,14 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "mojo/public/cpp/system/message.h"
|
| +#include "ui/base/test/user_interactive_test_case.h"
|
|
|
| -namespace mojo {
|
| +#include "base/run_loop.h"
|
|
|
| -ScopedMessageHandle::~ScopedMessageHandle() {
|
| +namespace test {
|
|
|
| +void RunTestInteractively() {
|
| + base::RunLoop().Run();
|
| }
|
|
|
| -} // namespace mojo
|
| +}
|
|
|