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

Unified Diff: third_party/WebKit/Source/core/page/DragData.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
« no previous file with comments | « third_party/WebKit/Source/core/page/DragData.h ('k') | third_party/WebKit/Source/core/page/DragState.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/page/DragData.cpp
diff --git a/third_party/WebKit/Source/core/page/DragData.cpp b/third_party/WebKit/Source/core/page/DragData.cpp
index ddb2cb5fb564cc23d7e32fec1caaaad706c805d9..78d2b363f16412811cf274655e88197acd5812c6 100644
--- a/third_party/WebKit/Source/core/page/DragData.cpp
+++ b/third_party/WebKit/Source/core/page/DragData.cpp
@@ -116,7 +116,7 @@ bool DragData::containsCompatibleContent() const
|| containsFiles();
}
-PassRefPtrWillBeRawPtr<DocumentFragment> DragData::asFragment(LocalFrame* frame) const
+RawPtr<DocumentFragment> DragData::asFragment(LocalFrame* frame) const
{
/*
* Order is richest format first. On OSX this is:
@@ -138,7 +138,7 @@ PassRefPtrWillBeRawPtr<DocumentFragment> DragData::asFragment(LocalFrame* frame)
KURL baseURL;
m_platformDragData->htmlAndBaseURL(html, baseURL);
ASSERT(frame->document());
- if (RefPtrWillBeRawPtr<DocumentFragment> fragment = createFragmentFromMarkup(*frame->document(), html, baseURL, DisallowScriptingAndPluginContent))
+ if (RawPtr<DocumentFragment> fragment = createFragmentFromMarkup(*frame->document(), html, baseURL, DisallowScriptingAndPluginContent))
return fragment.release();
}
« no previous file with comments | « third_party/WebKit/Source/core/page/DragData.h ('k') | third_party/WebKit/Source/core/page/DragState.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698