| Index: third_party/WebKit/Source/platform/testing/TestingPlatformSupport.cpp
|
| diff --git a/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.cpp b/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.cpp
|
| index 8939238558d0126bfd7e67c947a3121292177429..c4ea2201f3ddc4f0f55c4d7de4fe043254c3d69a 100644
|
| --- a/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.cpp
|
| +++ b/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.cpp
|
| @@ -112,6 +112,11 @@ WebCompositorSupport* TestingPlatformSupport::compositorSupport()
|
| return m_config.compositorSupport;
|
| }
|
|
|
| +WebUnitTestSupport* TestingPlatformSupport::unitTestSupport()
|
| +{
|
| + return m_oldPlatform ? m_oldPlatform->unitTestSupport() : nullptr;
|
| +}
|
| +
|
| WebThread* TestingPlatformSupport::currentThread()
|
| {
|
| return m_oldPlatform ? m_oldPlatform->currentThread() : nullptr;
|
|
|