diff options
Diffstat (limited to 'WebCore/page/chromium/ChromeClientChromium.h')
-rw-r--r-- | WebCore/page/chromium/ChromeClientChromium.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/WebCore/page/chromium/ChromeClientChromium.h b/WebCore/page/chromium/ChromeClientChromium.h index fc42250..e897c15 100644 --- a/WebCore/page/chromium/ChromeClientChromium.h +++ b/WebCore/page/chromium/ChromeClientChromium.h @@ -48,7 +48,10 @@ public: // If handleExternal is true, then drawing and input handling for the // popup will be handled by the external embedder. virtual void popupOpened(PopupContainer* popupContainer, const IntRect& bounds, - bool focusOnShow, bool handleExternal) = 0; + bool handleExternal) = 0; + + // Notifies the client a popup was closed. + virtual void popupClosed(PopupContainer* popupContainer) = 0; // Notifies embedder that the state of an accessibility object has changed. virtual void didChangeAccessibilityObjectState(AccessibilityObject*) = 0; |