Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1264)

Unified Diff: third_party/WebKit/Source/web/WebViewImpl.cpp

Issue 2029423003: OOPIF IME: Renderer Side Changes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/web/WebViewImpl.h ('k') | third_party/WebKit/public/web/WebWidget.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebViewImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp
index 05a2cb933392fec03b0db6ba59e92dd287e0b68f..0f84d3623eb0e7d93740d126b7ddf24722fea383 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.cpp
+++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
@@ -2324,6 +2324,11 @@ bool WebViewImpl::setComposition(
if (!focused || !m_imeAcceptEvents)
return false;
+ // In case the focused frame has changed and IME on browser side has did
+ // not know this when it sent the IPC.
+ if (focused->localFrameRoot() != mainFrameImpl()->frame())
+ return false;
+
if (WebPlugin* plugin = focusedPluginIfInputMethodSupported(focused))
return plugin->setComposition(text, underlines, selectionStart, selectionEnd);
@@ -2388,6 +2393,11 @@ bool WebViewImpl::confirmComposition(const WebString& text, ConfirmCompositionBe
if (!focused || !m_imeAcceptEvents)
return false;
+ // In case the focused frame has changed and IME on browser side has did
+ // not know this when it sent the IPC.
+ if (focused->localFrameRoot() != mainFrameImpl()->frame())
+ return false;
+
if (WebPlugin* plugin = focusedPluginIfInputMethodSupported(focused))
return plugin->confirmComposition(text, selectionBehavior);
@@ -2406,6 +2416,11 @@ bool WebViewImpl::compositionRange(size_t* location, size_t* length)
if (!focused || !m_imeAcceptEvents)
return false;
+ // In case the focused frame has changed and IME on browser side has did
+ // not know this when sent the IPC.
+ if (focused->localFrameRoot() != mainFrameImpl()->frame())
+ return false;
+
const EphemeralRange range = focused->inputMethodController().compositionEphemeralRange();
if (range.isNull())
return false;
@@ -2424,6 +2439,11 @@ WebTextInputInfo WebViewImpl::textInputInfo()
{
WebTextInputInfo info;
+ // When mainFrameImpl() is nullptr/remote, IME is handled at the Widget
+ // belonging to the local root.
+ if (!mainFrameImpl())
+ return info;
+
Frame* focusedFrame = focusedCoreFrame();
if (!focusedFrame->isLocalFrame())
return info;
@@ -2432,6 +2452,11 @@ WebTextInputInfo WebViewImpl::textInputInfo()
if (!focused)
return info;
+ // We can only have a text input type when focused frame belongs to this
+ // WebViewImpl, i.e., its local root is the main frame.
+ if (focused->localFrameRoot() != mainFrameImpl()->frame())
+ return info;
+
FrameSelection& selection = focused->selection();
if (!selection.isAvailable()) {
// plugins/mouse-capture-inside-shadow.html reaches here.
@@ -2481,10 +2506,21 @@ WebTextInputInfo WebViewImpl::textInputInfo()
WebTextInputType WebViewImpl::textInputType()
{
+ // When mainFrameImpl() is nullptr/remote, IME is handled at the Widget
+ // belonging to the local root.
+ if (!mainFrameImpl())
+ return WebTextInputTypeNone;
+
LocalFrame* focusedFrame = m_page->focusController().focusedFrame();
if (!focusedFrame)
return WebTextInputTypeNone;
+ if (focusedFrame != mainFrameImpl()->frame()) {
+ // We can only report a text input type when the focused frame belongs
+ // to this WebViewImpl, i.e., its local root is the main frame.
+ return WebTextInputTypeNone;
+ }
+
if (!focusedFrame->selection().isAvailable()) {
// "mouse-capture-inside-shadow.html" reaches here.
return WebTextInputTypeNone;
@@ -2824,6 +2860,46 @@ void WebViewImpl::didChangeWindowResizerRect()
mainFrameImpl()->frameView()->windowResizerRectChanged();
}
+bool WebViewImpl::getCompositionCharacterBounds(WebVector<WebRect>& bounds)
+{
+ size_t offset = 0;
+ size_t characterCount = 0;
+ if (!compositionRange(&offset, &characterCount))
+ return false;
+
+ if (characterCount == 0)
+ return false;
+
+ WebLocalFrame* frame = focusedFrame();
+
+ // Only consider frames whose local root is the main frame. For other
+ // local frames which have different local roots, the corresponding
+ // WebFrameWidget will handle this task.
+ if (frame->localRoot() != mainFrameImpl())
+ return false;
+
+ WebVector<WebRect> result(characterCount);
+ WebRect webrect;
+ for (size_t i = 0; i < characterCount; ++i) {
+ if (!frame->firstRectForCharacterRange(offset + i, 1, webrect)) {
+ DLOG(ERROR) << "Could not retrieve character rectangle at " << i;
+ return false;
+ }
+ result[i] = webrect;
+ }
+ bounds.swap(result);
+ return true;
+}
+
+void WebViewImpl::applyReplacementRange(int start, int length)
+{
+ if (WebLocalFrame* frame = focusedFrame()->toWebLocalFrame()) {
+ WebRange webrange = WebRange::fromDocumentRange(frame, start, length);
+ if (!webrange.isNull())
+ frame->selectRange(webrange);
+ }
+}
+
// WebView --------------------------------------------------------------------
WebSettingsImpl* WebViewImpl::settingsImpl()
« no previous file with comments | « third_party/WebKit/Source/web/WebViewImpl.h ('k') | third_party/WebKit/public/web/WebWidget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698