diff options
Diffstat (limited to 'WebKit/win/WebView.h')
| -rw-r--r-- | WebKit/win/WebView.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/WebKit/win/WebView.h b/WebKit/win/WebView.h index 752c16d..d44e6c6 100644 --- a/WebKit/win/WebView.h +++ b/WebKit/win/WebView.h @@ -33,7 +33,7 @@ #include <WebCore/DragActions.h> #include <WebCore/IntRect.h> #include <WebCore/RefCountedGDIHandle.h> -#include <WebCore/Timer.h> +#include <WebCore/SuspendableTimer.h> #include <WebCore/WindowMessageListener.h> #include <WebCore/WKCACFLayer.h> #include <WebCore/WKCACFLayerRenderer.h> @@ -832,6 +832,7 @@ public: void frameRect(RECT* rect); void closeWindow(); void closeWindowSoon(); + void closeWindowTimerFired(); bool didClose() const { return m_didClose; } bool transparent() const { return m_transparent; } @@ -885,6 +886,7 @@ public: void cancelDeleteBackingStoreSoon(); HWND topLevelParent() const { return m_topLevelParent; } + HWND viewWindow() const { return m_viewWindow; } void updateActiveState(); @@ -939,7 +941,6 @@ protected: void preflightSpellChecker(); bool continuousCheckingAllowed(); void initializeToolTipWindow(); - void closeWindowTimerFired(WebCore::Timer<WebView>*); void prepareCandidateWindow(WebCore::Frame*, HIMC); void updateSelectionForIME(); LRESULT onIMERequestCharPosition(WebCore::Frame*, IMECHARPOSITION*); @@ -1011,7 +1012,7 @@ protected: static bool s_allowSiteSpecificHacks; - WebCore::Timer<WebView> m_closeWindowTimer; + WebCore::SuspendableTimer* m_closeWindowTimer; OwnPtr<TRACKMOUSEEVENT> m_mouseOutTracker; HWND m_topLevelParent; |
