/external/chromium_org/content/renderer/ |
D | text_input_client_observer.cc | 65 size_t index = webview()->focusedFrame()->characterIndexForPoint(web_point); in OnCharacterIndexForPoint() 78 blink::WebFrame* frame = webview()->focusedFrame(); in OnFirstRectForCharacterRange() 92 blink::WebLocalFrame* frame = webview()->focusedFrame()->toWebLocalFrame(); in OnStringForRange()
|
D | render_view_impl.cc | 1156 webview()->focusedFrame()->selectWordAroundCaret(); in OnSelectWordAroundCaret() 1225 if (!webview() || !webview()->focusedFrame()) in OnExecuteEditCommand() 1228 webview()->focusedFrame()->executeCommand( in OnExecuteEditCommand() 1238 webview()->focusedFrame()->moveCaretSelection(point); in OnMoveCaret() 1540 WebFrame* frame = webview()->focusedFrame(); in handleCurrentKeyboardEvent() 2279 WebFrame* focused_frame = webview()->focusedFrame(); in GetFocusedElement() 2383 WebFrame* focused_frame = webview()->focusedFrame(); in OnFind() 2494 view->focusedFrame()->executeCommand(WebString::fromUTF8("Unselect"), in OnStopFinding() 2505 WebFrame* focused_frame = view->focusedFrame(); in OnStopFinding() 3410 if (WebLocalFrame* frame = webview()->focusedFrame()->toWebLocalFrame()) { in OnImeConfirmComposition() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | TreeScope.cpp | 349 static Element* focusedFrameOwnerElement(Frame* focusedFrame, Frame* currentFrame) in focusedFrameOwnerElement() argument 351 for (; focusedFrame; focusedFrame = focusedFrame->tree().parent()) { in focusedFrameOwnerElement() 352 if (focusedFrame->tree().parent() == currentFrame) { in focusedFrameOwnerElement() 354 return focusedFrame->deprecatedLocalOwner(); in focusedFrameOwnerElement() 365 …element = focusedFrameOwnerElement(document.page()->focusController().focusedFrame(), document.fra… in adjustedFocusedElement()
|
D | Document.cpp | 5737 Frame* focusedFrame = page->focusController().focusedFrame(); in hasFocus() local 5738 if (focusedFrame && focusedFrame->isLocalFrame()) { in hasFocus() 5739 if (toLocalFrame(focusedFrame)->tree().isDescendantOf(frame())) in hasFocus()
|
/external/chromium_org/chrome/renderer/spellchecker/ |
D | spellcheck_provider.cc | 119 WebFrame* frame = render_view()->GetWebView()->focusedFrame(); in FocusedNodeChanged() 261 render_view()->GetWebView()->focusedFrame()->executeCommand( in OnAdvanceToNextMisspelling() 294 render_view()->GetWebView()->focusedFrame()->executeCommand( in OnToggleSpellPanel() 303 WebFrame* frame = render_view()->GetWebView()->focusedFrame(); in EnableSpellcheck()
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebViewImpl.cpp | 943 RefPtr<Frame> focusedFrame = focusedWebCoreFrame(); in handleKeyEvent() local 944 if (focusedFrame && focusedFrame->isRemoteFrameTemporary()) { in handleKeyEvent() 945 …LocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(toLocalFrameTemporary(focusedFrame.get())); in handleKeyEvent() 950 if (!focusedFrame || !focusedFrame->isLocalFrame()) in handleKeyEvent() 953 RefPtr<LocalFrame> frame = toLocalFrame(focusedFrame.get()); in handleKeyEvent() 1345 Frame* focusedFrame = page()->focusController().focusedOrMainFrame(); in sendContextMenuEvent() local 1346 if (!focusedFrame->isLocalFrame()) in sendContextMenuEvent() 1348 bool handled = toLocalFrame(focusedFrame)->eventHandler().sendContextMenuEventForKey(); in sendContextMenuEvent() 1372 focusedFrame()->executeCommand(WebString::fromUTF8("SelectAll")); in keyEventDefault() 1376 focusedFrame()->executeCommand(WebString::fromUTF8("Copy")); in keyEventDefault() [all …]
|
D | WebViewImpl.h | 166 virtual WebFrame* focusedFrame() OVERRIDE;
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | FocusController.cpp | 272 …RefPtr<LocalFrame> focusedFrame = (m_focusedFrame && m_focusedFrame->isLocalFrame()) ? toLocalFram… in focusDocumentView() local 273 if (focusedFrame && focusedFrame->view()) { in focusDocumentView() 274 RefPtrWillBeRawPtr<Document> document = focusedFrame->document(); in focusDocumentView() 305 if (Frame* frame = focusedFrame()) in focusedOrMainFrame() 674 RefPtr<LocalFrame> oldFocusedFrame = toLocalFrame(focusedFrame()); in setFocusedElement() 787 …Element* focusedElement = (focusedFrame() && toLocalFrame(focusedFrame())->document()) ? toLocalFr… in findFocusCandidateInContainer()
|
D | FocusController.h | 73 Frame* focusedFrame() const { return m_focusedFrame.get(); } in focusedFrame() function
|
/external/chromium_org/content/shell/renderer/test_runner/ |
D | text_input_controller.cc | 234 if (!view_->focusedFrame() || in FirstRectForCharacterRange() 235 !view_->focusedFrame()->firstRectForCharacterRange( in FirstRectForCharacterRange()
|
D | test_runner.cc | 2066 web_view_->focusedFrame()->executeCommand(WebString::fromUTF8(command), in ExecCommand() 2071 return web_view_->focusedFrame()->isCommandEnabled( in IsCommandEnabled() 2092 web_view_->focusedFrame()->executeScriptInIsolatedWorld( in EvaluateScriptInIsolatedWorldAndReturnValue() 2103 web_view_->focusedFrame()->executeScriptInIsolatedWorld( in EvaluateScriptInIsolatedWorld() 2117 web_view_->focusedFrame()->setIsolatedWorldSecurityOrigin(world_id, in SetIsolatedWorldSecurityOrigin() 2124 web_view_->focusedFrame()->setIsolatedWorldContentSecurityPolicy( in SetIsolatedWorldContentSecurityPolicy()
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
D | Frame.cpp | 172 if (page() && page()->focusController().focusedFrame() == this) in willDetachFrameHost()
|
/external/chromium_org/content/renderer/accessibility/ |
D | renderer_accessibility_focus_only.cc | 54 if (view->focusedFrame() != frame) in DidFinishLoad()
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLFrameElementBase.cpp | 189 …else if (page->focusController().focusedFrame() == contentFrame()) // Focus may have already been … in setFocus()
|
/external/chromium_org/third_party/WebKit/public/web/ |
D | WebView.h | 170 virtual WebFrame* focusedFrame() = 0;
|
/external/chromium_org/chrome/renderer/printing/ |
D | print_web_view_helper.cc | 945 blink::WebLocalFrame* focusedFrame = in GetPrintFrame() local 946 webView->focusedFrame()->toWebLocalFrame(); in GetPrintFrame() 947 *frame = focusedFrame->hasSelection() in GetPrintFrame() 948 ? focusedFrame in GetPrintFrame()
|
D | print_web_view_helper_browsertest.cc | 343 ASSERT_NE(view_->GetWebView()->focusedFrame(), in TEST_F()
|
/external/chromium_org/android_webview/renderer/ |
D | print_web_view_helper.cc | 902 blink::WebLocalFrame* focusedFrame = in GetPrintFrame() local 903 webView->focusedFrame()->toWebLocalFrame(); in GetPrintFrame() 904 *frame = focusedFrame->hasSelection() in GetPrintFrame() 905 ? focusedFrame in GetPrintFrame()
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | FrameSelection.cpp | 101 , m_focused(frame && frame->page() && frame->page()->focusController().focusedFrame() == frame) in FrameSelection()
|