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

Unified Diff: third_party/WebKit/Source/web/WebRange.cpp

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/WebRange.cpp
diff --git a/third_party/WebKit/Source/web/WebRange.cpp b/third_party/WebKit/Source/web/WebRange.cpp
index 211f3217b0e84c262f3c4517e40d2c64bc95f497..c1f700cb7e6e0b9d824f23792deaabafbe0d7557 100644
--- a/third_party/WebKit/Source/web/WebRange.cpp
+++ b/third_party/WebKit/Source/web/WebRange.cpp
@@ -82,12 +82,12 @@ WebRange WebRange::fromDocumentRange(WebLocalFrame* frame, int start, int length
return createRange(PlainTextRange(start, start + length).createRange(*scope));
}
-WebRange::WebRange(const PassRefPtrWillBeRawPtr<Range>& range)
+WebRange::WebRange(const RawPtr<Range>& range)
: m_private(range)
{
}
-WebRange::operator PassRefPtrWillBeRawPtr<Range>() const
+WebRange::operator RawPtr<Range>() const
{
return m_private.get();
}
« no previous file with comments | « third_party/WebKit/Source/web/WebPluginDocument.cpp ('k') | third_party/WebKit/Source/web/WebRemoteFrameImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698