diff options
| author | Simon Hausmann <simon.hausmann@digia.com> | 2012-09-25 13:02:02 +0200 |
|---|---|---|
| committer | Simon Hausmann <simon.hausmann@digia.com> | 2012-09-25 13:02:02 +0200 |
| commit | 715be629d51174233403237bfc563cf150087dc8 (patch) | |
| tree | 4cff72df808db977624338b0a38d8b6d1bd73c57 /Source/WebKit/chromium/public/WebViewClient.h | |
| parent | dc6262b587c71c14e30d93e57ed812e36a79a33e (diff) | |
| download | qtwebkit-715be629d51174233403237bfc563cf150087dc8.tar.gz | |
Imported WebKit commit ce614b0924ba46f78d4435e28ff93c8525fbb7cc (http://svn.webkit.org/repository/webkit/trunk@129485)
New snapshot that includes MingW build fixes
Diffstat (limited to 'Source/WebKit/chromium/public/WebViewClient.h')
| -rw-r--r-- | Source/WebKit/chromium/public/WebViewClient.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/WebKit/chromium/public/WebViewClient.h b/Source/WebKit/chromium/public/WebViewClient.h index 88da1416b..da6498d30 100644 --- a/Source/WebKit/chromium/public/WebViewClient.h +++ b/Source/WebKit/chromium/public/WebViewClient.h @@ -293,6 +293,13 @@ public: // Return true to swallow the input event if the embedder will start a disambiguation popup virtual bool didTapMultipleTargets(const WebGestureEvent&, const WebVector<WebRect>& targetRects) { return false; } + // Show a notification popup for the specified form vaidation messages + // besides the anchor rectangle. An implementation of this function should + // not hide the popup until hideValidationMessage call. + virtual void showValidationMessage(const WebRect& anchorInScreen, const WebString& mainText, const WebString& supplementalText, WebTextDirection hint) { } + // Hide notifation popup for form validation messages. + virtual void hideValidationMessage() { } + // Session history ----------------------------------------------------- // Tells the embedder to navigate back or forward in session history by |
