| Index: mojo/edk/system/core_test_base.cc
|
| diff --git a/mojo/edk/system/core_test_base.cc b/mojo/edk/system/core_test_base.cc
|
| index b81a051d22c45591fc048b572e0d4287a44426f7..7196886d0ab7b284d785492c9beaa7d350be999c 100644
|
| --- a/mojo/edk/system/core_test_base.cc
|
| +++ b/mojo/edk/system/core_test_base.cc
|
| @@ -9,7 +9,6 @@
|
| #include "base/compiler_specific.h"
|
| #include "base/logging.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "mojo/edk/embedder/simple_platform_support.h"
|
| #include "mojo/edk/system/configuration.h"
|
| #include "mojo/edk/system/core.h"
|
| #include "mojo/edk/system/dispatcher.h"
|
| @@ -173,7 +172,7 @@ CoreTestBase::~CoreTestBase() {
|
| }
|
|
|
| void CoreTestBase::SetUp() {
|
| - core_ = new Core(make_scoped_ptr(new embedder::SimplePlatformSupport()));
|
| + core_ = new Core(&platform_support_);
|
| }
|
|
|
| void CoreTestBase::TearDown() {
|
|
|