| Index: third_party/WebKit/Source/web/WebElementCollection.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebElementCollection.cpp b/third_party/WebKit/Source/web/WebElementCollection.cpp
|
| index 280e71d79522c36ade099bd8b9a9a28ec79d30e0..64b1b036187c88eb856ab842334138a83bd46be7 100644
|
| --- a/third_party/WebKit/Source/web/WebElementCollection.cpp
|
| +++ b/third_party/WebKit/Source/web/WebElementCollection.cpp
|
| @@ -48,12 +48,12 @@ void WebElementCollection::assign(const WebElementCollection& other)
|
| m_private = other.m_private;
|
| }
|
|
|
| -WebElementCollection::WebElementCollection(const RawPtr<HTMLCollection>& col)
|
| +WebElementCollection::WebElementCollection(HTMLCollection*col)
|
| : m_private(col)
|
| {
|
| }
|
|
|
| -WebElementCollection& WebElementCollection::operator=(const RawPtr<HTMLCollection>& col)
|
| +WebElementCollection& WebElementCollection::operator=(HTMLCollection*col)
|
| {
|
| m_private = col;
|
| return *this;
|
|
|