Home | History | Annotate | Download | only in web

Lines Matching refs:frame

33 #include "core/frame/LocalFrame.h"
34 #include "core/frame/Settings.h"
59 const LocalFrame* frame = toLocalFrame(m_webView->focusedCoreFrame());
60 if (!frame)
62 if (frame->spellChecker().isSpellCheckingEnabledInFocusedNode())
64 const Document* document = frame->document();
97 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree().traverseNext()) {
98 if (!frame->isLocalFrame())
100 toLocalFrame(frame)->document()->markers().removeMarkers(DocumentMarker::MisspellingMarkers());
106 if (LocalFrame* frame = toLocalFrame(m_webView->focusedCoreFrame())) {
107 VisibleSelection frameSelection = frame->selection().selection();
110 frame->spellChecker().didBeginEditing(rootEditableElement);
119 const LocalFrame* frame = toLocalFrame(m_webView->focusedCoreFrame());
120 return frame && frame->settings() && (frame->settings()->asynchronousSpellCheckingEnabled() || frame->settings()->unifiedTextCheckerEnabled());
125 const Frame* frame = m_webView->focusedCoreFrame();
126 return !frame || !frame->settings() || (!frame->settings()->asynchronousSpellCheckingEnabled() && !frame->settings()->unifiedTextCheckerEnabled());