Index: third_party/WebKit/Source/web/TextFinder.h |
diff --git a/third_party/WebKit/Source/web/TextFinder.h b/third_party/WebKit/Source/web/TextFinder.h |
index 025a574a5cafcfea57daf0210350c4d8ca8149f3..2ce33e59642ac69c46f16a4305452f469e018407 100644 |
--- a/third_party/WebKit/Source/web/TextFinder.h |
+++ b/third_party/WebKit/Source/web/TextFinder.h |
@@ -55,7 +55,7 @@ template <typename T> class WebVector; |
class WEB_EXPORT TextFinder final : public GarbageCollectedFinalized<TextFinder> { |
WTF_MAKE_NONCOPYABLE(TextFinder); |
public: |
- static RawPtr<TextFinder> create(WebLocalFrameImpl& ownerFrame); |
+ static TextFinder* create(WebLocalFrameImpl& ownerFrame); |
bool find( |
int identifier, const WebString& searchText, const WebFindOptions&, |
@@ -94,7 +94,7 @@ public: |
class FindMatch { |
DISALLOW_NEW_EXCEPT_PLACEMENT_NEW(); |
public: |
- FindMatch(RawPtr<Range>, int ordinal); |
+ FindMatch(Range*, int ordinal); |
DECLARE_TRACE(); |