| Index: third_party/WebKit/Source/web/WebHistoryItem.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebHistoryItem.cpp b/third_party/WebKit/Source/web/WebHistoryItem.cpp
|
| index 3913a2fafcf569d6029937799a372bf51f652a29..46ce15a9effc4a0ec1ae384008b0c8dd6ba1c67a 100644
|
| --- a/third_party/WebKit/Source/web/WebHistoryItem.cpp
|
| +++ b/third_party/WebKit/Source/web/WebHistoryItem.cpp
|
| @@ -219,18 +219,18 @@ WebVector<WebString> WebHistoryItem::getReferencedFilePaths() const
|
| return results;
|
| }
|
|
|
| -WebHistoryItem::WebHistoryItem(const PassRefPtrWillBeRawPtr<HistoryItem>& item)
|
| +WebHistoryItem::WebHistoryItem(const RawPtr<HistoryItem>& item)
|
| : m_private(item)
|
| {
|
| }
|
|
|
| -WebHistoryItem& WebHistoryItem::operator=(const PassRefPtrWillBeRawPtr<HistoryItem>& item)
|
| +WebHistoryItem& WebHistoryItem::operator=(const RawPtr<HistoryItem>& item)
|
| {
|
| m_private = item;
|
| return *this;
|
| }
|
|
|
| -WebHistoryItem::operator PassRefPtrWillBeRawPtr<HistoryItem>() const
|
| +WebHistoryItem::operator RawPtr<HistoryItem>() const
|
| {
|
| return m_private.get();
|
| }
|
|
|