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

Unified Diff: third_party/WebKit/Source/web/TextFinder.h

Issue 1865813002: Remove RawPtr from Source/web/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 8 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: 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();
« no previous file with comments | « third_party/WebKit/Source/web/StorageQuotaClientImpl.h ('k') | third_party/WebKit/Source/web/TextFinder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698