summaryrefslogtreecommitdiffstats
path: root/Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.h')
-rw-r--r--Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.h b/Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.h
index c1d8b37..9778441 100644
--- a/Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.h
+++ b/Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.h
@@ -65,6 +65,9 @@ public:
bool isTestRunning() { return m_state == Testing; }
+ WKBundleFrameRef topLoadingFrame() { return m_topLoadingFrame; }
+ void setTopLoadingFrame(WKBundleFrameRef frame) { m_topLoadingFrame = frame; }
+
private:
InjectedBundle();
~InjectedBundle();
@@ -89,6 +92,8 @@ private:
RefPtr<GCController> m_gcController;
RefPtr<EventSendingController> m_eventSendingController;
+ WKBundleFrameRef m_topLoadingFrame;
+
std::ostringstream m_outputStream;
enum State {