diff options
Diffstat (limited to 'Source/WebKit2/UIProcess/qt/WebPageProxyQt.cpp')
-rw-r--r-- | Source/WebKit2/UIProcess/qt/WebPageProxyQt.cpp | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/Source/WebKit2/UIProcess/qt/WebPageProxyQt.cpp b/Source/WebKit2/UIProcess/qt/WebPageProxyQt.cpp index 8a205f91d..a89782506 100644 --- a/Source/WebKit2/UIProcess/qt/WebPageProxyQt.cpp +++ b/Source/WebKit2/UIProcess/qt/WebPageProxyQt.cpp @@ -60,31 +60,6 @@ void WebPageProxy::loadRecentSearches(const String&, Vector<String>&) notImplemented(); } -void WebPageProxy::setComposition(const String& text, Vector<CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd) -{ - // FIXME: We need to find out how to proper handle the crashes case. - if (!isValid()) - return; - - process()->send(Messages::WebPage::SetComposition(text, underlines, selectionStart, selectionEnd, replacementRangeStart, replacementRangeEnd), m_pageID); -} - -void WebPageProxy::confirmComposition(const String& compositionString, int64_t selectionStart, int64_t selectionLength) -{ - if (!isValid()) - return; - - process()->send(Messages::WebPage::ConfirmComposition(compositionString, selectionStart, selectionLength), m_pageID); -} - -void WebPageProxy::cancelComposition() -{ - if (!isValid()) - return; - - process()->send(Messages::WebPage::CancelComposition(), m_pageID); -} - void WebPageProxy::registerApplicationScheme(const String& scheme) { process()->send(Messages::WebPage::RegisterApplicationScheme(scheme), m_pageID); @@ -111,29 +86,6 @@ void WebPageProxy::sendApplicationSchemeReply(const QQuickNetworkReply* reply) #endif } -void WebPageProxy::setUserScripts(const Vector<String>& scripts) -{ - process()->send(Messages::WebPage::SetUserScripts(scripts), m_pageID); -} - -void WebPageProxy::didFindZoomableArea(const IntPoint& target, const IntRect& area) -{ - m_pageClient->didFindZoomableArea(target, area); -} - -void WebPageProxy::findZoomableAreaForPoint(const IntPoint& point, const IntSize& area) -{ - if (!isValid()) - return; - - m_process->send(Messages::WebPage::FindZoomableAreaForPoint(point, area), m_pageID); -} - -void WebPageProxy::didReceiveMessageFromNavigatorQtObject(const String& contents) -{ - m_pageClient->didReceiveMessageFromNavigatorQtObject(contents); -} - void WebPageProxy::authenticationRequiredRequest(const String& hostname, const String& realm, const String& prefilledUsername, String& username, String& password) { m_pageClient->handleAuthenticationRequiredRequest(hostname, realm, prefilledUsername, username, password); |