Searched defs:replacedRange (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/editing/
H A DSpellingCorrectionController.cpp325 Range* replacedRange = m_correctionPanelInfo.rangeToBeReplaced.get(); local
326 if (!replacedRange || m_frame->document() != replacedRange->ownerDocument())
342 replacedRange->startContainer()->document()->markers()->addMarker(replacedRange, DocumentMarker::RejectedCorrection, m_correctionPanelInfo.replacedString);
446 void SpellingCorrectionController::markCorrection(PassRefPtr<Range> replacedRange, const String& replacedString) argument
449 DocumentMarkerController* markers = replacedRange->startContainer()->document()->markers();
453 markers->addMarker(replacedRange.get(), markerType, replacedString);
455 markers->addMarker(replacedRange.get(), markerType);

Completed in 95 milliseconds