Index: Source/web/WebTextCheckingCompletionImpl.h |
diff --git a/Source/web/WebTextCheckingCompletionImpl.h b/Source/web/WebTextCheckingCompletionImpl.h |
index ca4b3b5250f09cef91966d960d4cf514b2225d07..e1c8bc253b8f0368949bcf77ece950b96d2bcf1c 100644 |
--- a/Source/web/WebTextCheckingCompletionImpl.h |
+++ b/Source/web/WebTextCheckingCompletionImpl.h |
@@ -31,6 +31,7 @@ |
#ifndef WebTextCheckingCompletionImpl_h |
#define WebTextCheckingCompletionImpl_h |
+#include "platform/heap/Handle.h" |
#include "platform/text/TextChecking.h" |
#include "public/web/WebTextCheckingCompletion.h" |
#include "wtf/RefPtr.h" |
@@ -41,7 +42,7 @@ class EditorClientImpl; |
class WebTextCheckingCompletionImpl FINAL : public WebTextCheckingCompletion { |
public: |
- explicit WebTextCheckingCompletionImpl(WTF::PassRefPtr<TextCheckingRequest> request) |
+ explicit WebTextCheckingCompletionImpl(PassRefPtrWillBeRawPtr<TextCheckingRequest> request) |
: m_request(request) |
{ |
} |
@@ -52,7 +53,7 @@ public: |
private: |
virtual ~WebTextCheckingCompletionImpl() { } |
- WTF::RefPtr<TextCheckingRequest> m_request; |
+ RefPtrWillBePersistent<TextCheckingRequest> m_request; |
}; |
} // namespace blink |