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

Unified Diff: third_party/WebKit/Source/core/editing/spellcheck/SpellCheckRequester.h

Issue 2252973002: Remove m_paragraphRange from SpellCheckRequest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@SpellCheckerDebugInfo
Patch Set: Rebased Created 4 years, 4 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/spellcheck/SpellCheckRequester.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/editing/spellcheck/SpellCheckRequester.h
diff --git a/third_party/WebKit/Source/core/editing/spellcheck/SpellCheckRequester.h b/third_party/WebKit/Source/core/editing/spellcheck/SpellCheckRequester.h
index b93c670fa6ff89e9d9dea042a6518d5b5fc3a0e9..366713cfe36dcd24713abdf0139b978af3e9f2af 100644
--- a/third_party/WebKit/Source/core/editing/spellcheck/SpellCheckRequester.h
+++ b/third_party/WebKit/Source/core/editing/spellcheck/SpellCheckRequester.h
@@ -45,13 +45,12 @@ class TextCheckerClient;
class SpellCheckRequest final : public TextCheckingRequest {
public:
- static SpellCheckRequest* create(TextCheckingProcessType, const EphemeralRange& checkingRange, const EphemeralRange& paragraphRange, int requestNumber = 0);
+ static SpellCheckRequest* create(TextCheckingProcessType, const EphemeralRange& checkingRange, int requestNumber = 0);
~SpellCheckRequest() override;
void dispose();
Range* checkingRange() const { return m_checkingRange; }
- Range* paragraphRange() const { return m_paragraphRange; }
Element* rootEditableElement() const { return m_rootEditableElement; }
void setCheckerAndSequence(SpellCheckRequester*, int sequence);
@@ -66,11 +65,10 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- SpellCheckRequest(Range* checkingRange, Range* paragraphRange, const String&, TextCheckingProcessType, const Vector<uint32_t>& documentMarkersInRange, const Vector<unsigned>& documentMarkerOffsets, int requestNumber);
+ SpellCheckRequest(Range* checkingRange, const String&, TextCheckingProcessType, const Vector<uint32_t>& documentMarkersInRange, const Vector<unsigned>& documentMarkerOffsets, int requestNumber);
Member<SpellCheckRequester> m_requester;
Member<Range> m_checkingRange;
- Member<Range> m_paragraphRange;
Member<Element> m_rootEditableElement;
TextCheckingRequestData m_requestData;
int m_requestNumber;
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/spellcheck/SpellCheckRequester.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698