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

Unified Diff: third_party/WebKit/Source/core/html/HTMLMapElement.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/core/html/HTMLMapElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLMapElement.cpp b/third_party/WebKit/Source/core/html/HTMLMapElement.cpp
index a9c7cadb98f90aa3746f4540f4fc36301f9c51ee..e462d77fea0394044a6992e9f518687b08e2caed 100644
--- a/third_party/WebKit/Source/core/html/HTMLMapElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLMapElement.cpp
@@ -62,7 +62,7 @@ HTMLAreaElement* HTMLMapElement::areaForPoint(LayoutPoint location, const Layout
HTMLImageElement* HTMLMapElement::imageElement()
{
- RefPtrWillBeRawPtr<HTMLCollection> images = document().images();
+ RawPtr<HTMLCollection> images = document().images();
for (unsigned i = 0; Element* curr = images->item(i); ++i) {
ASSERT(isHTMLImageElement(curr));
@@ -104,7 +104,7 @@ void HTMLMapElement::parseAttribute(const QualifiedName& name, const AtomicStrin
HTMLElement::parseAttribute(name, oldValue, value);
}
-PassRefPtrWillBeRawPtr<HTMLCollection> HTMLMapElement::areas()
+RawPtr<HTMLCollection> HTMLMapElement::areas()
{
return ensureCachedCollection<HTMLCollection>(MapAreas);
}
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLMapElement.h ('k') | third_party/WebKit/Source/core/html/HTMLMarqueeElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698