diff options
Diffstat (limited to 'Tools/WebKitTestRunner/TestController.h')
-rw-r--r-- | Tools/WebKitTestRunner/TestController.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Tools/WebKitTestRunner/TestController.h b/Tools/WebKitTestRunner/TestController.h index 56c3c4702..332e33b70 100644 --- a/Tools/WebKitTestRunner/TestController.h +++ b/Tools/WebKitTestRunner/TestController.h @@ -92,6 +92,7 @@ private: bool runTest(const char* pathOrURL); void platformInitialize(); + void platformDestroy(); void platformInitializeContext(); void platformRunUntil(bool& done, double timeout); void platformDidCommitLoadForFrame(WKPageRef, WKFrameRef); @@ -182,6 +183,11 @@ private: OwnPtr<EventSenderProxy> m_eventSenderProxy; #endif +#if PLATFORM(QT) + class RunLoop; + RunLoop* m_runLoop; +#endif + WorkQueueManager m_workQueueManager; }; |