diff options
Diffstat (limited to 'Source/WebKit/chromium/src/WebViewImpl.cpp')
-rw-r--r-- | Source/WebKit/chromium/src/WebViewImpl.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/WebKit/chromium/src/WebViewImpl.cpp b/Source/WebKit/chromium/src/WebViewImpl.cpp index 764ae6dca..6666571b3 100644 --- a/Source/WebKit/chromium/src/WebViewImpl.cpp +++ b/Source/WebKit/chromium/src/WebViewImpl.cpp @@ -120,6 +120,7 @@ #include "TextIterator.h" #include "Timer.h" #include "TraceEvent.h" +#include "ValidationMessageClientImpl.h" #include "WebAccessibilityObject.h" #include "WebActiveWheelFlingParameters.h" #include "WebAutofillClient.h" @@ -436,6 +437,7 @@ WebViewImpl::WebViewImpl(WebViewClient* client) , m_navigatorContentUtilsClient(NavigatorContentUtilsClientImpl::create(this)) #endif , m_flingModifier(0) + , m_validationMessage(ValidationMessageClientImpl::create(*client)) { // WebKit/win/WebView.cpp does the same thing, except they call the // KJS specific wrapper around this method. We need to have threading @@ -450,6 +452,7 @@ WebViewImpl::WebViewImpl(WebViewClient* client) pageClients.dragClient = &m_dragClientImpl; pageClients.inspectorClient = &m_inspectorClientImpl; pageClients.backForwardClient = BackForwardListChromium::create(this); + // FIXME: Set pageClients.validationMessageClient when Chromium-side implementation is done. m_page = adoptPtr(new Page(pageClients)); #if ENABLE(MEDIA_STREAM) |