Home
last modified time | relevance | path

Searched refs:selectedFrame (Results 1 – 13 of 13) sorted by relevance

/external/webkit/Source/WebKit/chromium/src/
DContextMenuClientImpl.cpp103 static String selectMisspelledWord(const ContextMenu* defaultMenu, Frame* selectedFrame) in selectMisspelledWord() argument
106 String misspelledWord = selectedFrame->editor()->selectedText().stripWhiteSpace(); in selectMisspelledWord()
117 HitTestResult hitTestResult = selectedFrame->eventHandler()-> in selectMisspelledWord()
118 …hitTestResultAtPoint(selectedFrame->page()->contextMenuController()->hitTestResult().point(), true… in selectMisspelledWord()
126 WebFrameImpl::selectWordAroundPosition(selectedFrame, pos); in selectMisspelledWord()
127 misspelledWord = selectedFrame->editor()->selectedText().stripWhiteSpace(); in selectMisspelledWord()
133 selectedFrame->selection()->setSelection(VisibleSelection(pos)); in selectMisspelledWord()
136 selectedFrame->selection()->setSelection(VisibleSelection(pos)); in selectMisspelledWord()
153 Frame* selectedFrame = r.innerNonSharedNode()->document()->frame(); in getCustomMenuFromDefaultItems() local
156 data.mousePosition = selectedFrame->view()->contentsToWindow(r.point()); in getCustomMenuFromDefaultItems()
[all …]
/external/webkit/Source/WebKit2/WebProcess/WebPage/
DFindController.cpp97 Frame* selectedFrame = frameWithSelection(m_webPage->corePage()); in findString() local
103 if (selectedFrame) in findString()
104 selectedFrame->selection()->clear(); in findString()
127 …if (!(options & FindOptionsShowFindIndicator) || !updateFindIndicator(selectedFrame, shouldShowOve… in findString()
161 bool FindController::updateFindIndicator(Frame* selectedFrame, bool isShowingOverlay) in updateFindIndicator() argument
163 if (!selectedFrame) in updateFindIndicator()
166 IntRect selectionRect = enclosingIntRect(selectedFrame->selection()->bounds()); in updateFindIndicator()
173 … IntRect selectionRectInWindowCoordinates = selectedFrame->view()->contentsToWindow(selectionRect); in updateFindIndicator()
176 selectedFrame->selection()->getClippedVisibleTextRectangles(textRects); in updateFindIndicator()
186 paintRect.move(selectedFrame->view()->frameRect().x(), selectedFrame->view()->frameRect().y()); in updateFindIndicator()
[all …]
DFindController.h66 bool updateFindIndicator(WebCore::Frame* selectedFrame, bool isShowingOverlay);
/external/webkit/Source/WebKit/mac/WebView/
DWebView.h307 - (WebFrame *)selectedFrame;
DWebView.mm3517 - (WebFrame *)selectedFrame
5835 id documentView = [[[self selectedFrame] frameView] documentView];
5860 id documentView = [[[self selectedFrame] frameView] documentView];
6043 WebFrame *result = [self selectedFrame];
/external/webkit/Source/WebKit/mac/WebCoreSupport/
DWebEditorClient.mm298 NSView <WebDocumentView> *view = [[[m_webView selectedFrame] frameView] documentView];
390 NSArray *WebEditorClient::pasteboardTypesForSelection(Frame* selectedFrame)
392 WebFrame* frame = kit(selectedFrame);
/external/v8/src/
Ddebug-debugger.js980 ExecutionState.prototype.selectedFrame = function() { method in ExecutionState
/external/webkit/Source/WebKit/mac/
DWebKit.order601 -[WebView selectedFrame]
DChangeLog-2007-10-1410136 * WebView/WebView.mm: (-[WebView selectedFrame]): Removed extra return statement.
10298 Use the frame parameter instead of using the webview's selectedFrame.
18050 Use selectedFrame to get the frame with the text selection.
18897 (-[WebView selectedFrame]):
20356 (-[WebView selectedFrame]): Ditto.
DChangeLog-2006-02-091742 (-[WebView selectedFrame]): Call to WebFrame as appropriate
3383 (-[WebView selectedFrame]):
3386 new method, extracted from -selectedFrame; returns frame containing first responder, if any
4666 (-[WebView selectedFrame]):
4764 - added -[WebView selectedFrame] to SPI (pending public API), needed for 4180958
4767 (-[WebView selectedFrame]):
4773 add -selectedFrame to PendingPublic category
DChangeLog-2010-01-294434 …instead of just selectedFrame. When the selection changes, I don't think there is a situation whe…
5151 (-[WebView selectedFrame]): Added a conditional to avoid trying to get at the
/external/webkit/Source/WebKit/gtk/
DChangeLog15402 Equivalent to selectedFrame in the Mac API.
/external/webkit/Source/WebCore/
DChangeLog-2006-12-318486 just getting the webview's selectedFrame.