| Index: third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h
|
| diff --git a/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h b/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h
|
| index dcd0abbe474762070e09484690213a250be10024..78ce356e2ac0e3a5d66678e60aed0658729e90a2 100644
|
| --- a/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h
|
| +++ b/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h
|
| @@ -135,16 +135,18 @@ class TestingPlatformSupport : public Platform {
|
| WebClipboard* clipboard() override;
|
| WebFileUtilities* fileUtilities() override;
|
| WebIDBFactory* idbFactory() override;
|
| - WebMimeRegistry* mimeRegistry() override;
|
| WebURLLoaderMockFactory* getURLLoaderMockFactory() override;
|
| blink::WebURLLoader* createURLLoader() override;
|
| -
|
| WebData loadResource(const char* name) override;
|
| WebURLError cancelledError(const WebURL&) const override;
|
| + InterfaceProvider* interfaceProvider() override;
|
|
|
| protected:
|
| + class TestingInterfaceProvider;
|
| +
|
| const Config m_config;
|
| Platform* const m_oldPlatform;
|
| + std::unique_ptr<TestingInterfaceProvider> m_interfaceProvider;
|
| };
|
|
|
| class TestingPlatformSupportWithMockScheduler : public TestingPlatformSupport {
|
|
|