| 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 958b2ee1166ed1689bc12b41b01f56daed4b8db0..3f1b5f95aac81d681cda1bba842b5deab9349a5a 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);
|
| }
|
|
|