/external/chromium_org/content/renderer/ |
D | text_input_client_observer.cc | 48 size_t index = webview()->focusedFrame()->characterIndexForPoint(web_point); in OnCharacterIndexForPoint() 61 blink::WebFrame* frame = webview()->focusedFrame(); in OnFirstRectForCharacterRange() 75 blink::WebFrame* frame = webview()->focusedFrame(); in OnStringForRange()
|
D | render_view_impl.cc | 1584 if (webview() && webview()->focusedFrame()) { in OnReloadFrame() 1588 webview()->focusedFrame()->reload(false); in OnReloadFrame() 1613 webview()->focusedFrame()->executeCommand(WebString::fromUTF8("Copy"), in OnCopy() 1622 webview()->focusedFrame()->executeCommand(WebString::fromUTF8("Cut"), in OnCut() 1630 webview()->focusedFrame()->executeCommand(WebString::fromUTF8("Delete"), in OnDelete() 1636 if (!webview() || !webview()->focusedFrame()) in OnExecuteEditCommand() 1639 webview()->focusedFrame()->executeCommand( in OnExecuteEditCommand() 1649 webview()->focusedFrame()->moveCaretSelection(point); in OnMoveCaret() 1657 webview()->focusedFrame()->executeCommand(WebString::fromUTF8("Paste"), in OnPaste() 1666 webview()->focusedFrame()->executeCommand( in OnPasteAndMatchStyle() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | TreeScope.cpp | 347 static Element* focusedFrameOwnerElement(Frame* focusedFrame, Frame* currentFrame) in focusedFrameOwnerElement() argument 349 for (; focusedFrame; focusedFrame = focusedFrame->tree().parent()) { in focusedFrameOwnerElement() 350 if (focusedFrame->tree().parent() == currentFrame) in focusedFrameOwnerElement() 351 return focusedFrame->ownerElement(); in focusedFrameOwnerElement() 361 …element = focusedFrameOwnerElement(document.page()->focusController().focusedFrame(), document.fra… in adjustedFocusedElement()
|
/external/chromium_org/chrome/renderer/spellchecker/ |
D | spellcheck_provider.cc | 118 WebFrame* frame = render_view()->GetWebView()->focusedFrame(); in FocusedNodeChanged() 260 render_view()->GetWebView()->focusedFrame()->executeCommand( in OnAdvanceToNextMisspelling() 293 render_view()->GetWebView()->focusedFrame()->executeCommand( in OnToggleSpellPanel() 302 WebFrame* frame = render_view()->GetWebView()->focusedFrame(); in EnableSpellcheck()
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLDocument.cpp | 128 if (Frame* focusedFrame = page->focusController().focusedFrame()) { in hasFocus() local 129 if (focusedFrame->tree().isDescendantOf(frame())) in hasFocus()
|
D | HTMLFrameElementBase.cpp | 198 …else if (page->focusController().focusedFrame() == contentFrame()) // Focus may have already been … in setFocus()
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebViewImpl.cpp | 1397 Frame* focusedFrame = page()->focusController().focusedOrMainFrame(); in sendContextMenuEvent() local 1398 bool handled = focusedFrame->eventHandler().sendContextMenuEventForKey(); in sendContextMenuEvent() 1422 focusedFrame()->executeCommand(WebString::fromUTF8("SelectAll")); in keyEventDefault() 1426 focusedFrame()->executeCommand(WebString::fromUTF8("Copy")); in keyEventDefault() 2010 RefPtr<Frame> focusedFrame = m_page->focusController().focusedFrame(); in setFocus() local 2011 if (focusedFrame) { in setFocus() 2012 Element* element = focusedFrame->document()->focusedElement(); in setFocus() 2013 if (element && focusedFrame->selection().selection().isNone()) { in setFocus() 2025 … focusedFrame->selection().setSelection(VisibleSelection(position, SEL_DEFAULT_AFFINITY)); in setFocus() 2041 RefPtr<Frame> focusedFrame = m_page->focusController().focusedFrame(); in setFocus() local [all …]
|
D | WebViewImpl.h | 209 virtual WebFrame* focusedFrame();
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | FocusController.cpp | 258 if (Frame* frame = focusedFrame()) in focusedOrMainFrame() 623 RefPtr<Frame> oldFocusedFrame = focusedFrame(); in setFocusedElement() 772 …Element* focusedElement = (focusedFrame() && focusedFrame()->document()) ? focusedFrame()->documen… in findFocusCandidateInContainer()
|
D | FocusController.h | 70 Frame* focusedFrame() const { return m_focusedFrame.get(); } in focusedFrame() function
|
/external/chromium_org/content/renderer/accessibility/ |
D | renderer_accessibility_focus_only.cc | 50 if (view->focusedFrame() != frame) in DidFinishLoad()
|
/external/chromium_org/chrome/renderer/ |
D | content_settings_observer_browsertest.cc | 77 observer.allowStorage(view_->GetWebView()->focusedFrame(), true); in TEST_F() 81 observer.allowStorage(view_->GetWebView()->focusedFrame(), true); in TEST_F()
|
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
D | TextInputController.cpp | 177 WebFrame* frame = m_webView->focusedFrame(); in firstRectForCharacterRange()
|
D | TestRunner.cpp | 1159 …m_webView->focusedFrame()->executeCommand(WebString::fromUTF8(command), WebString::fromUTF8(value)… in execCommand() 1170 bool rv = m_webView->focusedFrame()->isCommandEnabled(WebString::fromUTF8(command)); in isCommandEnabled() 1194 …m_webView->focusedFrame()->executeScriptInIsolatedWorld(arguments[0].toInt32(), &source, 1, 1, &va… in evaluateScriptInIsolatedWorldAndReturnValue() 1222 … m_webView->focusedFrame()->executeScriptInIsolatedWorld(arguments[0].toInt32(), &source, 1, 1); in evaluateScriptInIsolatedWorld() 1237 m_webView->focusedFrame()->setIsolatedWorldSecurityOrigin(arguments[0].toInt32(), origin); in setIsolatedWorldSecurityOrigin() 1247 …m_webView->focusedFrame()->setIsolatedWorldContentSecurityPolicy(arguments[0].toInt32(), cppVarian… in setIsolatedWorldContentSecurityPolicy()
|
/external/chromium_org/third_party/WebKit/public/web/ |
D | WebView.h | 184 virtual WebFrame* focusedFrame() = 0;
|
/external/chromium_org/chrome/renderer/printing/ |
D | print_web_view_helper.cc | 860 blink::WebFrame* focusedFrame = webView->focusedFrame(); in GetPrintFrame() local 861 *frame = focusedFrame->hasSelection() ? focusedFrame : webView->mainFrame(); in GetPrintFrame()
|
D | print_web_view_helper_browsertest.cc | 318 ASSERT_NE(view_->GetWebView()->focusedFrame(), in TEST_F()
|
/external/chromium_org/android_webview/renderer/ |
D | print_web_view_helper.cc | 869 blink::WebFrame* focusedFrame = webView->focusedFrame(); in GetPrintFrame() local 870 *frame = focusedFrame->hasSelection() ? focusedFrame : webView->mainFrame(); in GetPrintFrame()
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
D | Frame.cpp | 348 if (page() && page()->focusController().focusedFrame() == this) in willDetachPage()
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | FrameSelection.cpp | 98 , m_focused(frame && frame->page() && frame->page()->focusController().focusedFrame() == frame) in FrameSelection()
|