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

Unified Diff: Source/core/editing/SpellCheckRequester.h

Issue 299353004: Oilpan: move editing objects to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Make test wrapper class finalized Created 6 years, 7 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 | « Source/core/editing/SimplifyMarkupCommand.cpp ('k') | Source/core/editing/SplitElementCommand.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/SpellCheckRequester.h
diff --git a/Source/core/editing/SpellCheckRequester.h b/Source/core/editing/SpellCheckRequester.h
index 903fc1ac57377fde08eabcb876043612f27ccb4b..bd05790b077f9af6dce583308af1947be35fb938 100644
--- a/Source/core/editing/SpellCheckRequester.h
+++ b/Source/core/editing/SpellCheckRequester.h
@@ -50,7 +50,7 @@ public:
PassRefPtrWillBeRawPtr<Range> checkingRange() const { return m_checkingRange; }
PassRefPtrWillBeRawPtr<Range> paragraphRange() const { return m_paragraphRange; }
- PassRefPtr<Element> rootEditableElement() const { return m_rootEditableElement; }
+ PassRefPtrWillBeRawPtr<Element> rootEditableElement() const { return m_rootEditableElement; }
void setCheckerAndSequence(SpellCheckRequester*, int sequence);
void requesterDestroyed();
@@ -67,7 +67,7 @@ private:
SpellCheckRequester* m_requester;
RefPtrWillBePersistent<Range> m_checkingRange;
RefPtrWillBePersistent<Range> m_paragraphRange;
- RefPtr<Element> m_rootEditableElement;
+ RefPtrWillBePersistent<Element> m_rootEditableElement;
TextCheckingRequestData m_requestData;
int m_requestNumber;
};
« no previous file with comments | « Source/core/editing/SimplifyMarkupCommand.cpp ('k') | Source/core/editing/SplitElementCommand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698