Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(687)

Unified Diff: Source/core/editing/spellcheck/TextCheckingHelper.h

Issue 1331893002: Switch TextCheckingParagraph&Helper over to EphemeralRanges. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebased Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/editing/spellcheck/TextCheckingHelper.h
diff --git a/Source/core/editing/spellcheck/TextCheckingHelper.h b/Source/core/editing/spellcheck/TextCheckingHelper.h
index 9ff06efc120d6f4d5c326ad92372a0a68603528c..176a8c4fedb18db4d2b39d6ec13b520f5460ca73 100644
--- a/Source/core/editing/spellcheck/TextCheckingHelper.h
+++ b/Source/core/editing/spellcheck/TextCheckingHelper.h
@@ -21,6 +21,7 @@
#ifndef TextCheckingHelper_h
#define TextCheckingHelper_h
+#include "core/editing/EphemeralRange.h"
#include "core/editing/Position.h"
#include "platform/heap/Handle.h"
#include "platform/text/TextChecking.h"
@@ -28,7 +29,6 @@
namespace blink {
-class ExceptionState;
class LocalFrame;
class Range;
class SpellCheckerClient;
@@ -38,13 +38,14 @@ struct TextCheckingResult;
class TextCheckingParagraph {
STACK_ALLOCATED();
public:
- explicit TextCheckingParagraph(PassRefPtrWillBeRawPtr<Range> checkingRange);
+ explicit TextCheckingParagraph(const EphemeralRange& checkingRange);
+ TextCheckingParagraph(const EphemeralRange& checkingRange, const EphemeralRange& paragraphRange);
TextCheckingParagraph(PassRefPtrWillBeRawPtr<Range> checkingRange, PassRefPtrWillBeRawPtr<Range> paragraphRange);
~TextCheckingParagraph();
int rangeLength() const;
- PassRefPtrWillBeRawPtr<Range> subrange(int characterOffset, int characterCount) const;
- int offsetTo(const Position&, ExceptionState&) const;
+ EphemeralRange subrange(int characterOffset, int characterCount) const;
+ int offsetTo(const Position&) const;
void expandRangeToNextEnd();
const String& text() const;
@@ -59,19 +60,21 @@ public:
int checkingLength() const;
bool checkingRangeCovers(int location, int length) const { return location < checkingEnd() && location + length > checkingStart(); }
- PassRefPtrWillBeRawPtr<Range> paragraphRange() const;
- PassRefPtrWillBeRawPtr<Range> checkingRange() const { return m_checkingRange; }
+ EphemeralRange paragraphRange() const;
+ void setParagraphRange(const EphemeralRange&);
+
+ EphemeralRange checkingRange() const { return m_checkingRange; }
private:
void invalidateParagraphRangeValues();
- PassRefPtrWillBeRawPtr<Range> offsetAsRange() const;
+ EphemeralRange offsetAsRange() const;
bool isTextEmpty() const { return text().isEmpty(); }
bool isRangeEmpty() const { return checkingStart() >= checkingEnd(); }
- RefPtrWillBeMember<Range> m_checkingRange;
- mutable RefPtrWillBeMember<Range> m_paragraphRange;
- mutable RefPtrWillBeMember<Range> m_offsetAsRange;
+ EphemeralRange m_checkingRange;
+ mutable EphemeralRange m_paragraphRange;
+ mutable EphemeralRange m_offsetAsRange;
mutable String m_text;
mutable int m_checkingStart;
mutable int m_checkingEnd;
@@ -85,10 +88,10 @@ public:
TextCheckingHelper(SpellCheckerClient&, const Position& start, const Position& end);
~TextCheckingHelper();
- String findFirstMisspelling(int& firstMisspellingOffset, bool markAll, RefPtrWillBeRawPtr<Range>& firstMisspellingRange);
+ String findFirstMisspelling(int& firstMisspellingOffset, bool markAll);
String findFirstMisspellingOrBadGrammar(bool checkGrammar, bool& outIsSpelling, int& outFirstFoundOffset, GrammarDetail& outGrammarDetail);
String findFirstBadGrammar(GrammarDetail& outGrammarDetail, int& outGrammarPhraseOffset, bool markAll);
- void markAllMisspellings(RefPtrWillBeRawPtr<Range>& firstMisspellingRange);
+ bool markAllMisspellings();
void markAllBadGrammar();
private:
@@ -101,7 +104,7 @@ private:
};
void checkTextOfParagraph(TextCheckerClient&, const String&, TextCheckingTypeMask, Vector<TextCheckingResult>&);
-void expandRangeToSentenceBoundary(Range&);
+EphemeralRange expandRangeToSentenceBoundary(const EphemeralRange&);
bool unifiedTextCheckerEnabled(const LocalFrame*);
} // namespace blink
« no previous file with comments | « Source/core/editing/spellcheck/SpellChecker.cpp ('k') | Source/core/editing/spellcheck/TextCheckingHelper.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698